update default config.json setup and example-config.json

This commit is contained in:
LeonOstrez
2024-07-25 14:33:09 +02:00
parent dafdbca00f
commit e7b5f75323
3 changed files with 19 additions and 2 deletions

View File

@@ -306,7 +306,12 @@ class Config(_StrictModel):
Pythagora Core configuration
"""
llm: dict[LLMProvider, ProviderConfig] = Field(default={LLMProvider.OPENAI: ProviderConfig()})
llm: dict[LLMProvider, ProviderConfig] = Field(
default={
LLMProvider.OPENAI: ProviderConfig(),
LLMProvider.ANTHROPIC: ProviderConfig(),
}
)
agent: dict[str, AgentLLMConfig] = Field(
default={
DEFAULT_AGENT_NAME: AgentLLMConfig(),