From 3eb057407181eea5ec6bfac5ea05228fec07a731 Mon Sep 17 00:00:00 2001 From: Victor Hugo Vargas Date: Tue, 30 Jun 2026 14:39:54 -0700 Subject: [PATCH] =?UTF-8?q?docs:=20fix=20go-llm-agent=20=E2=86=92=20rony-l?= =?UTF-8?q?lm-agent=20in=20all=20docs=20and=20diagrams?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The library was renamed to rony-llm-agent but some docs still referenced the old go-llm-agent name. Also fixed 'chat-bot/' → 'rony-chat-bot/' in project structure diagrams to match the actual directory name. --- README.es.md | 2 +- README.md | 2 +- docs/architecture.es.md | 2 +- docs/architecture.md | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.es.md b/README.es.md index c862c0f..0dd5f27 100644 --- a/README.es.md +++ b/README.es.md @@ -45,7 +45,7 @@ go build -o bin/chat-bot ./cmd/chat-bot ## 📁 Estructura ``` -chat-bot/ +rony-chat-bot/ ├── cm./rony-chat-bot/ # Entry point (CLI) ├── internal/ │ ├── server/ # HTTP handlers + SSE diff --git a/README.md b/README.md index 9ef83e7..d9d5e5f 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ go build -o bin/chat-bot ./cmd/chat-bot ## 📁 Structure ``` -chat-bot/ +rony-chat-bot/ ├── cmd/chat-bot/ # Entry point (CLI) ├── internal/ │ ├── server/ # HTTP handlers + SSE diff --git a/docs/architecture.es.md b/docs/architecture.es.md index 578f9ee..2b63049 100644 --- a/docs/architecture.es.md +++ b/docs/architecture.es.md @@ -907,7 +907,7 @@ curl -X POST http://localhost:4321/api/chat \ ## 📂 10. Estructura del Proyecto ``` -chat-bot/ +rony-chat-bot/ ├── cmd/ │ └── chat-bot/ │ └── main.go # CLI entrypoint diff --git a/docs/architecture.md b/docs/architecture.md index 5276dde..c09649c 100644 --- a/docs/architecture.md +++ b/docs/architecture.md @@ -864,7 +864,7 @@ func TestRunner_RAGContextIsInjected(t *testing.T) { memory := newMockMemoryWithDocs(t, []rag.Fragment{ {Content: "Rony Harness: AI agent harness...", ProjectID: "rony-harness"}, - {Content: "go-llm-agent: Go library...", ProjectID: "rony-llm-agent"}, + {Content: "rony-llm-agent: Go library...", ProjectID: "rony-llm-agent"}, }) runner := agent.NewRunner(agent.Config{ @@ -880,7 +880,7 @@ func TestRunner_RAGContextIsInjected(t *testing.T) { // Verify LLM received context chunks in system prompt lastReq := mockLLM.LastRequest() assert.Contains(t, lastReq.Messages[0].Content, "Rony Harness") - assert.Contains(t, lastReq.Messages[0].Content, "go-llm-agent") + assert.Contains(t, lastReq.Messages[0].Content, "rony-llm-agent") } ``` @@ -906,7 +906,7 @@ curl -X POST http://localhost:4321/api/chat \ ## 📂 10. Project Structure ``` -chat-bot/ +rony-chat-bot/ ├── cmd/ │ └── chat-bot/ │ └── main.go # CLI entrypoint