mirror of
https://github.com/Pythagora-io/gpt-pilot.git
synced 2026-01-09 21:27:53 -05:00
fix default config
This commit is contained in:
@@ -328,20 +328,36 @@ class Config(_StrictModel):
|
||||
model="claude-3-5-sonnet-20240620",
|
||||
temperature=0.5,
|
||||
),
|
||||
CODE_MONKEY_AGENT_NAME: AgentLLMConfig(model="gpt-4-0125-preview", temperature=0.0),
|
||||
CODE_MONKEY_AGENT_NAME: AgentLLMConfig(
|
||||
provider=LLMProvider.OPENAI,
|
||||
model="gpt-4-0125-preview",
|
||||
temperature=0.0,
|
||||
),
|
||||
CODE_REVIEW_AGENT_NAME: AgentLLMConfig(
|
||||
provider=LLMProvider.ANTHROPIC,
|
||||
model="claude-3-5-sonnet-20240620",
|
||||
temperature=0.0,
|
||||
),
|
||||
DESCRIBE_FILES_AGENT_NAME: AgentLLMConfig(model="gpt-3.5-turbo", temperature=0.0),
|
||||
DESCRIBE_FILES_AGENT_NAME: AgentLLMConfig(
|
||||
provider=LLMProvider.OPENAI,
|
||||
model="gpt-4o-mini-2024-07-18",
|
||||
temperature=0.0,
|
||||
),
|
||||
GET_RELEVANT_FILES_AGENT_NAME: AgentLLMConfig(
|
||||
provider=LLMProvider.ANTHROPIC,
|
||||
model="claude-3-5-sonnet-20240620",
|
||||
temperature=0.0,
|
||||
),
|
||||
PARSE_TASK_AGENT_NAME: AgentLLMConfig(model="gpt-4-0125-preview", temperature=0.0),
|
||||
SPEC_WRITER_AGENT_NAME: AgentLLMConfig(model="gpt-4-0125-preview", temperature=0.0),
|
||||
PARSE_TASK_AGENT_NAME: AgentLLMConfig(
|
||||
provider=LLMProvider.OPENAI,
|
||||
model="gpt-4-0125-preview",
|
||||
temperature=0.0,
|
||||
),
|
||||
SPEC_WRITER_AGENT_NAME: AgentLLMConfig(
|
||||
provider=LLMProvider.OPENAI,
|
||||
model="gpt-4-0125-preview",
|
||||
temperature=0.0,
|
||||
),
|
||||
TASK_BREAKDOWN_AGENT_NAME: AgentLLMConfig(
|
||||
provider=LLMProvider.ANTHROPIC,
|
||||
model="claude-3-5-sonnet-20240620",
|
||||
|
||||
Reference in New Issue
Block a user