forked from cleveragents/cleveragents-core
20 lines
357 B
YAML
20 lines
357 B
YAML
# Example configuration for CleverAgents
|
|
|
|
agents:
|
|
default_llm:
|
|
type: llm
|
|
model: "gpt-4"
|
|
provider: "openai"
|
|
prompt_template: "You are a helpful assistant, answer based on context: {input}"
|
|
default_tool:
|
|
type: tool
|
|
tools:
|
|
- calculator
|
|
- weather
|
|
|
|
routing:
|
|
default: default_llm
|
|
|
|
templates:
|
|
greeting: "Hello, {name}!"
|