Skip to content

Commit

Permalink
remove claude again (#1151)
Browse files Browse the repository at this point in the history
  • Loading branch information
jennmueng authored Sep 11, 2024
1 parent c20a95e commit af40541
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/seer/automation/autofix/components/coding/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from langfuse.decorators import observe
from sentry_sdk.ai.monitoring import ai_track

from seer.automation.agent.agent import AgentConfig, ClaudeAgent
from seer.automation.agent.agent import AgentConfig, GptAgent
from seer.automation.autofix.autofix_context import AutofixContext
from seer.automation.autofix.components.coding.models import (
CodingOutput,
Expand Down Expand Up @@ -38,7 +38,7 @@ def _append_file_change(self, repo_external_id: str, file_change: FileChange):
def invoke(self, request: CodingRequest) -> CodingOutput | None:
tools = BaseTools(self.context)

agent = ClaudeAgent(
agent = GptAgent(
tools=tools.get_tools(),
config=AgentConfig(system_prompt=CodingPrompts.format_system_msg()),
)
Expand Down

0 comments on commit af40541

Please sign in to comment.