- Add core task execution framework - Add LLM integration with DeepSeek - Add text analysis task implementation - Add configuration management - Add tests and documentation
23 lines
574 B
YAML
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
|