This commit is contained in:
Slipstream 2025-04-25 20:02:02 -06:00
parent f9dc28d923
commit 1ab298d8c8
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -27,7 +27,7 @@ class GurtCog(commands.Cog):
self.api_url = "https://openrouter.ai/api/v1/chat/completions" self.api_url = "https://openrouter.ai/api/v1/chat/completions"
self.session = None self.session = None
self.tavily_client = TavilyClient(api_key=self.tavily_api_key) if self.tavily_api_key else None # Initialize Tavily client self.tavily_client = TavilyClient(api_key=self.tavily_api_key) if self.tavily_api_key else None # Initialize Tavily client
self.default_model = "google/gemini-2.5-flash-preview:thinking" self.default_model = "google/gemini-2.5-pro-preview-03-25"
self.fallback_model = "openai/gpt-4.1-nano" self.fallback_model = "openai/gpt-4.1-nano"
self.current_channel = None self.current_channel = None