about summary refs log tree commit diff
path: root/kaakaa/tea.scm
diff options
context:
space:
mode:
authorArun Isaac2026-04-12 04:10:50 +0100
committerArun Isaac2026-04-12 04:11:35 +0100
commitbe1495966157c20bce6c248ce3858baf9960e335 (patch)
tree20b66adc80266b6dcf3c9c8edb8be51caffc4a8e /kaakaa/tea.scm
parenta7184e55668f54b999109479f56b6fb797ce4d44 (diff)
downloadkaagum-be1495966157c20bce6c248ce3858baf9960e335.tar.gz
kaagum-be1495966157c20bce6c248ce3858baf9960e335.tar.lz
kaagum-be1495966157c20bce6c248ce3858baf9960e335.zip
Let tool kinds be constants, rather than functions.
It makes little sense for a tool kind to be a function of the tool
call arguments.
Diffstat (limited to 'kaakaa/tea.scm')
-rw-r--r--kaakaa/tea.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/kaakaa/tea.scm b/kaakaa/tea.scm
index 3986340..1660636 100644
--- a/kaakaa/tea.scm
+++ b/kaakaa/tea.scm
@@ -590,7 +590,7 @@ and a list of effects.
                                          ("sessionUpdate" . "tool_call")
                                          ("toolCallId" . ,(tool-call-id call))
                                          ("title" . ,(apply (tool-title tool) args))
-                                         ("kind" . ,(apply (tool-kind tool) args))
+                                         ("kind" . ,(tool-kind tool))
                                          ("rawInput" . ,(tool-call-arguments call))
                                          ("status" . "pending"))))))
                       effects))))))