Skip to content

Commit af59e6d

Browse files
committed
Field for rag_chunks
1 parent 145f5e8 commit af59e6d

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/models/responses.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,10 @@ class QueryResponse(BaseModel):
9696
],
9797
)
9898

99-
rag_chunks: list[RAGChunk] = []
99+
rag_chunks: list[RAGChunk] = Field(
100+
[],
101+
description="List of RAG chunks used to generate the response",
102+
)
100103

101104
tool_calls: Optional[list[ToolCall]] = Field(
102105
None,

0 commit comments

Comments
 (0)