diff --git a/src/llmling/config_resources/agents.yml b/src/llmling/config_resources/agents.yml deleted file mode 100644 index 082c2d8..0000000 --- a/src/llmling/config_resources/agents.yml +++ /dev/null @@ -1,38 +0,0 @@ -responses: - SupportResult: - description: "Support agent response" - fields: - support_advice: - type: str - description: "Advice returned to customer" - risk: - type: int - description: "Risk level" - constraints: - ge: 0 - le: 10 - - ResearchResult: - description: "Research agent response" - fields: - findings: - type: str - description: "Research findings" - -agents: - support: # Agent identifier - name: "Support Agent" - description: "Handles customer support inquiries" - model: "openai:gpt-3.5-turbo" - result_model: "SupportResult" - system_prompts: - - type: "text" - value: "You are a helpful support agent." - - researcher: # Another agent - name: "Research Agent" - model: "openai:gpt-4" - result_model: "ResearchResult" - system_prompts: - - type: "text" - value: "You are a thorough researcher."