- Updated the system configuration to include new role-level defaults for Light, Vision, and Audio connectors. - Refactored the resolveSystemConnector function to prioritize per-agent overrides, improving connector resolution logic. - Enhanced LLMConnector integration across various components to streamline settings retrieval and capabilities management. - Improved error handling and logging for connector-related operations, ensuring better diagnostics and user feedback.
71 lines
1.7 KiB
YAML
71 lines
1.7 KiB
YAML
- key: yaoagents
|
|
name: Yao Agents
|
|
type: openai
|
|
api_url: https://api.yaoagents.com
|
|
require_key: false
|
|
is_cloud: true
|
|
default_models:
|
|
- id: default
|
|
name: Default
|
|
capabilities: [vision, tool_calls, streaming]
|
|
enabled: true
|
|
|
|
- key: openai
|
|
name: OpenAI
|
|
type: openai
|
|
api_url: https://api.openai.com
|
|
require_key: true
|
|
default_models:
|
|
- id: gpt-4o
|
|
name: GPT-4o
|
|
max_input_tokens: 128000
|
|
max_output_tokens: 16384
|
|
capabilities: [vision, tool_calls, streaming, json]
|
|
enabled: true
|
|
- id: gpt-4o-mini
|
|
name: GPT-4o Mini
|
|
max_input_tokens: 128000
|
|
max_output_tokens: 16384
|
|
capabilities: [tool_calls, streaming, json]
|
|
enabled: true
|
|
- id: o3-mini
|
|
name: o3-mini
|
|
max_input_tokens: 200000
|
|
max_output_tokens: 100000
|
|
capabilities: [tool_calls, streaming, reasoning]
|
|
enabled: false
|
|
|
|
- key: anthropic
|
|
name: Anthropic
|
|
type: anthropic
|
|
api_url: https://api.anthropic.com
|
|
require_key: true
|
|
default_models:
|
|
- id: claude-sonnet-4-20250514
|
|
name: Claude Sonnet 4
|
|
max_input_tokens: 200000
|
|
max_output_tokens: 16000
|
|
capabilities: [vision, tool_calls, streaming, reasoning]
|
|
enabled: true
|
|
- id: claude-haiku-3-5-20241022
|
|
name: Claude Haiku 3.5
|
|
max_input_tokens: 200000
|
|
max_output_tokens: 8192
|
|
capabilities: [tool_calls, streaming]
|
|
enabled: true
|
|
|
|
- key: ollama
|
|
name: Ollama
|
|
type: openai
|
|
api_url: http://localhost:11434
|
|
require_key: false
|
|
url_editable: true
|
|
default_models: []
|
|
|
|
- key: azure
|
|
name: Azure OpenAI
|
|
type: openai
|
|
api_url: ""
|
|
require_key: true
|
|
url_editable: true
|
|
default_models: []
|