Compare commits

..

No commits in common. "50d59abf5213bb0639c8f506813a0d58b82409bc" and "c19a161a62f7956f780763569961c03e56845166" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -167,7 +167,7 @@ class WebResearcher:
self,
anthropic_api_key: str,
tavily_api_key: str,
model_id: str = "claude-sonnet-4-6",
model_id: str = "claude-sonnet-4-5-20250514",
trace_dir: Optional[str] = None,
):
self.client = Anthropic(api_key=anthropic_api_key)

View file

@ -40,7 +40,7 @@ def _get_researcher() -> WebResearcher:
return WebResearcher(
anthropic_api_key=_read_secret("ANTHROPIC_API_KEY"),
tavily_api_key=_read_secret("TAVILY_API_KEY"),
model_id=os.environ.get("MARCHWARDEN_MODEL", "claude-sonnet-4-6"),
model_id=os.environ.get("MARCHWARDEN_MODEL", "claude-sonnet-4-5-20250514"),
)