- RAG Specialist fully implemented new style
- Selection Specialist - VA version - fully implemented - Correction of TRAICIE_ROLE_DEFINITION_SPECIALIST - adaptation to new style - Removal of 'debug' statements
This commit is contained in:
@@ -4,4 +4,4 @@ from pydantic import BaseModel, Field
|
||||
|
||||
|
||||
class QAOutput(BaseModel):
|
||||
answer: bool = Field(None, description="True or False")
|
||||
answer: bool = Field(None, description="Your answer, True or False")
|
||||
|
||||
@@ -4,6 +4,6 @@ from pydantic import BaseModel, Field
|
||||
|
||||
|
||||
class RAGOutput(BaseModel):
|
||||
answer: str = Field(None, description="Answer to the questions asked")
|
||||
answer: str = Field(None, description="Answer to the questions asked, in Markdown format.")
|
||||
insufficient_info: bool = Field(None, description="An indication if there's insufficient information to answer")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user