From 8c7eec8a8d5c8e8035dd418a3c9c9d17de672931 Mon Sep 17 00:00:00 2001 From: Yiorgis Gozadinos Date: Thu, 12 Mar 2026 14:00:24 +0200 Subject: [PATCH] Strengthen cited chunk structured output description --- haiku_rag_slim/haiku/rag/agents/research/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haiku_rag_slim/haiku/rag/agents/research/models.py b/haiku_rag_slim/haiku/rag/agents/research/models.py index 6d8fe8dd..c63f0bbe 100644 --- a/haiku_rag_slim/haiku/rag/agents/research/models.py +++ b/haiku_rag_slim/haiku/rag/agents/research/models.py @@ -42,7 +42,7 @@ class RawSearchAnswer(BaseModel): answer: str = Field(..., description="The answer to the question") cited_chunks: list[str] = Field( default_factory=list, - description="IDs of chunks used to form the answer", + description="Complete chunk IDs from search results (e.g. '5ae52166-5329-42e9-b6a5-756fc0cb7200'). Copy the full UUID without brackets. Must not be empty when providing an answer.", ) confidence: float = Field( default=1.0,