Update docs

This commit is contained in:
Yiorgis Gozadinos 2025-10-20 16:46:55 +03:00
parent b8df152a90
commit 1ab15decf6
No known key found for this signature in database
3 changed files with 23 additions and 0 deletions

View file

@ -162,6 +162,14 @@ The A2A agent provides:
- Source citations with titles and URIs
- Full document retrieval on request
## Examples
See the [examples directory](examples/) for working examples:
- **[Interactive Research Assistant](examples/ag-ui-research/)** - Full-stack research assistant with Pydantic AI and AG-UI featuring human-in-the-loop approval and real-time state synchronization
- **[Docker Setup](examples/docker/)** - Complete Docker deployment with file monitoring, MCP server, and A2A agent
- **[A2A Security](examples/a2a-security/)** - Authentication examples (API key, OAuth2, GitHub)
## Documentation
Full documentation at: https://ggozad.github.io/haiku.rag/

View file

@ -6,6 +6,8 @@ Three agentic flows are provided by haiku.rag:
- Deep QA Agent — multi-agent question decomposition for complex questions
- Research MultiAgent — a multistep, analyzable research workflow
For an interactive example using Pydantic AI and AG-UI, see the [Interactive Research Assistant](https://github.com/ggozad/haiku.rag/tree/main/examples/ag-ui-research) example.
### Simple QA Agent

View file

@ -2,6 +2,19 @@
This directory contains example scripts demonstrating various features of haiku.rag.
## Interactive Research Assistant
**Directory:** `ag-ui-research/`
Full-stack research assistant with interactive UI powered by Pydantic AI and AG-UI:
- Multi-step research workflow with question decomposition
- Human-in-the-loop approval for research plans
- Real-time state synchronization between backend and frontend
- Context expansion and insight extraction
- Structured research reports with citations
See `ag-ui-research/README.md` for setup instructions.
## Docker Example
**Directory:** `docker/`