docs: fix go-llm-agent → rony-llm-agent in all docs and diagrams

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.
This commit is contained in:
Victor Hugo Vargas 2026-06-30 14:39:54 -07:00
parent b9769fac41
commit 3eb0574071
4 changed files with 6 additions and 6 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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