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.
2 parents 34a36bd + b004e91 commit 8c3d785Copy full SHA for 8c3d785
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Unreleased
4
5
+- Fix setting the `web-search` capability in the relevant models
6
+
7
## 0.50.1
8
9
- Bump mcp-java-sdk to 0.12.0.
src/eca/models.clj
@@ -48,7 +48,7 @@
48
{:reason? (get model-config "reasoning")
49
;; TODO how to check for web-search mode dynamically,
50
;; maybe fixed after web-search toolcall is implemented
51
- :web-search (contains? models-with-web-search-support (name model))
+ :web-search (contains? models-with-web-search-support (str provider "/" model))
52
:tools (get model-config "tool_call")
53
:max-output-tokens (get-in model-config ["limit" "output"])}
54
:limit {:context (get-in model-config ["limit" "context"])
0 commit comments