Compare commits

...

1 Commits

Author SHA1 Message Date
Logan Markewich 3006d83bdd improve funcion call check in anthropic llm 2025-05-27 12:48:41 -06:00
+1 -1
View File
@@ -187,7 +187,7 @@ export class Anthropic extends ToolCallLLM<
}
get supportToolCall() {
return this.model.startsWith("claude-3");
return this.model.includes("-3") || this.model.includes("-4");
}
get metadata() {