# Examples > Usage examples of `rony-llm-agent` in different contexts. ## 📁 Planned content | Example | Description | Status | |---|---|---| | `simple_chat/` | Basic chat without tools | 📋 Pending | | `chat_with_tools/` | Chat with custom tools | 📋 Pending | | `rag_qa/` | Q&A over documents | 📋 Pending | | `multi_agent/` | Sub-agent orchestration | 📋 Pending | | `streaming_ui/` | TUI integration | 📋 Pending | ## 🎯 How to run the examples (when they exist) ```bash cd examples/simple_chat go mod tidy export ANTHROPIC_API_KEY=sk-ant-... go run main.go ``` ## 📝 Contributing Each example should be: - ✅ **Standalone**: `go run main.go` and it works - ✅ **Minimal**: <100 lines if possible - ✅ **Documented**: README with what it demonstrates and how to extend it