- cleanup of old TASKs, AGENTs and SPECIALISTs

- Add additional configuration options to agent (temperature and model choice)
- Define new PROOFREADING Agents and Tasks
This commit is contained in:
Josako
2025-10-23 09:10:52 +02:00
parent 4ec1099925
commit 1720ddfa11
27 changed files with 112 additions and 860 deletions

View File

@@ -4,7 +4,7 @@ from pydantic import BaseModel, Field
class RAGOutput(BaseModel):
answer: str = Field(None, description="Answer to the questions asked, in Markdown format.")
answer: str = Field(None, description="Final answer to the question asked, in Markdown format.")
insufficient_info: bool = Field(None, description="An indication if there's insufficient information to answer")
model_config = {