- Introduction of TRACIE_KO_INTERVIEW_DEFINITION_SPECIALIST

- Re-introduction of EveAIAsset
- Make translation services resistent for situation with and without current_event defined.
- Ensure first question is asked in eveai_chat_client
- Start of version 1.4.0 of TRAICIE_SELECTION_SPECIALIST
This commit is contained in:
Josako
2025-07-02 16:58:43 +02:00
parent fbc9f44ac8
commit 51d029d960
34 changed files with 1292 additions and 302 deletions

View File

@@ -1,5 +1,5 @@
# Agent Types
AGENT_TYPES = {
ASSET_TYPES = {
"DOCUMENT_TEMPLATE": {
"name": "Document Template",
"description": "Asset that defines a template in markdown a specialist can process",
@@ -8,4 +8,9 @@ AGENT_TYPES = {
"name": "Specialist Configuration",
"description": "Asset that defines a specialist configuration",
},
"TRAICIE_KO_CRITERIA_QUESTIONS": {
"name": "Traicie KO Criteria Questions",
"description": "Asset that defines KO Criteria Questions and Answers",
"partner": "traicie"
},
}

View File

@@ -36,4 +36,12 @@ PROMPT_TYPES = {
"name": "translation_without_context",
"description": "An assistant to translate text without context",
},
"check_affirmative_answer": {
"name": "check_affirmative_answer",
"description": "An assistant to check if the answer to a question is affirmative",
},
"check_additional_information": {
"name": "check_additional_information",
"description": "An assistant to check if the answer to a question includes additional information or questions",
},
}

View File

@@ -20,5 +20,9 @@ SPECIALIST_TYPES = {
"TRAICIE_SELECTION_SPECIALIST": {
"name": "Traicie Selection Specialist",
"description": "Recruitment Selection Assistant",
}
},
"TRAICIE_KO_INTERVIEW_DEFINITION_SPECIALIST": {
"name": "Traicie KO Interview Definition Specialist",
"description": "Specialist assisting in questions and answers definition for KO Criteria",
},
}