File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
atomic-examples/rag-chatbot/rag_chatbot/agents Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ class RAGQuestionAnsweringAgentInputSchema(BaseIOSchema):
1616class RAGQuestionAnsweringAgentOutputSchema (BaseIOSchema ):
1717 """Output schema for the RAG QA agent."""
1818
19+ reasoning : str = Field (..., description = "The reasoning process leading up to the final answer" )
1920 answer : str = Field (..., description = "The answer to the user's question based on the retrieved context" )
2021
2122
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ class RAGQueryAgentInputSchema(BaseIOSchema):
1616class RAGQueryAgentOutputSchema (BaseIOSchema ):
1717 """Output schema for the RAG query agent."""
1818
19+ reasoning : str = Field (..., description = "The reasoning process leading up to the final query" )
1920 query : str = Field (..., description = "The semantic search query to use for retrieving relevant chunks" )
2021
2122
You can’t perform that action at this time.
0 commit comments