- Full implementation of Traicie Selection Specialist - VA version

- Improvements to CrewAI specialists and Specialists in general
- Addition of reusable components to check or get answers to questions from the full Human Message - HumanAnswerServices
This commit is contained in:
Josako
2025-07-06 20:01:30 +02:00
parent 50773fe602
commit 33b5742d2f
20 changed files with 609 additions and 281 deletions

View File

@@ -0,0 +1,7 @@
from typing import List, Optional
from pydantic import BaseModel, Field
class A2QOutput(BaseModel):
answer: str = Field(None, description="Answer to the question asked")