agent-task-executor/config/llm_config.yaml
zhukang dd797ab5e4 feat: initial commit of agent task executor framework
- Add core task execution framework
- Add LLM integration with DeepSeek
- Add text analysis task implementation
- Add configuration management
- Add tests and documentation
2025-01-14 20:53:09 +08:00

23 lines
574 B
YAML

llm:
provider: deepseek # can be: openai, azure, anthropic, deepseek, custom
model: deepseek-chat
max_tokens: 2000
temperature: 0.7
timeout: 30
# API configuration
# These values can be overridden by environment variables
# or secure storage
api:
api_base: null # will use provider default if not set
# Provider-specific settings
openai:
api_base: https://api.openai.com/v1
azure:
api_base: null # Set your Azure endpoint here
anthropic:
api_base: https://api.anthropic.com
deepseek:
api_base: https://api.deepseek.com