RAGResult
Defined in the RAG module.Rust AI Agent SDK Result of a RAG query.
Fields
| Name | Type | Description |
|---|---|---|
answer | String | Generated answer |
citations | Vec<Citation> | Citations used in the answer |
context | ContextPack | Context chunks used |
tokens_used | usize | Token usage |
processing_time_ms | u64 | Processing time in milliseconds |
Methods
new
| Name | Type |
|---|---|
answer | impl Into<String> |
context | ContextPack |
add_citation
| Name | Type |
|---|---|
citation | Citation |
citation_count
Source
View on GitHub
praisonai/src/rag/mod.rs at line 130
