diff options
| author | Arun Isaac | 2026-04-12 04:10:50 +0100 |
|---|---|---|
| committer | Arun Isaac | 2026-04-12 04:11:35 +0100 |
| commit | be1495966157c20bce6c248ce3858baf9960e335 (patch) | |
| tree | 20b66adc80266b6dcf3c9c8edb8be51caffc4a8e /kaakaa/tea.scm | |
| parent | a7184e55668f54b999109479f56b6fb797ce4d44 (diff) | |
| download | kaagum-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.scm | 2 |
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)))))) |
