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 64d5b5a commit 38c8e9dCopy full SHA for 38c8e9d
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Unreleased
4
5
+- Improve chat title generation.
6
+
7
## 0.73.0
8
9
- Add `:config-file` cli option to pass in config.
src/eca/features/chat.clj
@@ -564,11 +564,13 @@
564
(when-let [{:keys [result]} (llm-api/sync-prompt!
565
{:provider provider
566
:model model
567
- :model-capabilities model-capabilities
+ :model-capabilities (assoc model-capabilities
568
+ :reason? false
569
+ :tools false
570
+ :web-search false)
571
:instructions (f.prompt/title-prompt)
572
:user-messages user-messages
573
:config config
- :tools []
574
:provider-auth provider-auth})]
575
(when result
576
(let [title (subs result 0 (min (count result) 30))]
0 commit comments