33 lines
615 B
TOML
33 lines
615 B
TOML
|
|
# TypeDialog Agent - Development Configuration
|
||
|
|
|
||
|
|
[agent]
|
||
|
|
default_provider = "ollama" # Use local for dev
|
||
|
|
|
||
|
|
[agent.models]
|
||
|
|
claude = "claude-3-5-haiku-20241022"
|
||
|
|
openai = "gpt-4o-mini"
|
||
|
|
gemini = "gemini-2.0-flash-exp"
|
||
|
|
ollama = "llama2"
|
||
|
|
|
||
|
|
[agent.defaults]
|
||
|
|
max_tokens = 2048 # Lower for dev
|
||
|
|
temperature = 0.7
|
||
|
|
streaming = true
|
||
|
|
|
||
|
|
[agent.template]
|
||
|
|
engine = "tera"
|
||
|
|
strict_variables = true # Catch template errors in dev
|
||
|
|
|
||
|
|
[agent.validation]
|
||
|
|
enabled = true
|
||
|
|
strict = true # Strict validation in dev
|
||
|
|
|
||
|
|
[agent.output]
|
||
|
|
format = "markdown"
|
||
|
|
color = true
|
||
|
|
timestamp = true
|
||
|
|
|
||
|
|
[agent.logging]
|
||
|
|
level = "debug" # Verbose in dev
|
||
|
|
file = true
|