We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ca8a26 commit 9a8e034Copy full SHA for 9a8e034
interpreter/interpreter.py
@@ -249,7 +249,10 @@ async def async_respond(self, user_input=None):
249
provider = self.provider # Keep existing provider if set
250
max_tokens = self.max_tokens # Keep existing max_tokens if set
251
252
- if self.model in ["claude-3-5-sonnet-latest", "claude-3-5-sonnet-20241022"]:
+ if provider is None and self.model in [
253
+ "claude-3-5-sonnet-latest",
254
+ "claude-3-5-sonnet-20241022",
255
+ ]:
256
# For some reason, Litellm can't find the model info for these
257
provider = "anthropic"
258
0 commit comments