mirror of
https://github.com/Pythagora-io/gpt-pilot.git
synced 2026-01-08 12:53:50 -05:00
Change llm model for testing instructions
This commit is contained in:
@@ -97,6 +97,11 @@
|
||||
"provider": "openai",
|
||||
"model": "claude-sonnet-4-20250514",
|
||||
"temperature": 0.0
|
||||
},
|
||||
"Troubleshooter.define_user_review_goal": {
|
||||
"provider": "anthropic",
|
||||
"model": "claude-sonnet-4-20250514",
|
||||
"temperature": 0.0
|
||||
}
|
||||
},
|
||||
"prompt": {
|
||||
|
||||
@@ -45,6 +45,7 @@ PARSE_TASK_AGENT_NAME = "Developer.parse_task"
|
||||
TASK_BREAKDOWN_AGENT_NAME = "Developer.breakdown_current_task"
|
||||
TROUBLESHOOTER_BUG_REPORT = "Troubleshooter.generate_bug_report"
|
||||
TROUBLESHOOTER_GET_RUN_COMMAND = "Troubleshooter.get_run_command"
|
||||
TROUBLESHOOTER_DEFINE_USER_REVIEW_GOAL = "Troubleshooter.define_user_review_goal"
|
||||
TECH_LEAD_PLANNING = "TechLead.plan_epic"
|
||||
TECH_LEAD_EPIC_BREAKDOWN = "TechLead.epic_breakdown"
|
||||
SPEC_WRITER_AGENT_NAME = "SpecWriter"
|
||||
@@ -406,6 +407,11 @@ class Config(_StrictModel):
|
||||
model="claude-sonnet-4-20250514",
|
||||
temperature=0.0,
|
||||
),
|
||||
TROUBLESHOOTER_DEFINE_USER_REVIEW_GOAL: AgentLLMConfig(
|
||||
provider=LLMProvider.OPENAI,
|
||||
model="claude-sonnet-4-20250514",
|
||||
temperature=0.0,
|
||||
),
|
||||
}
|
||||
)
|
||||
prompt: PromptConfig = PromptConfig()
|
||||
|
||||
Reference in New Issue
Block a user