From be1495966157c20bce6c248ce3858baf9960e335 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sun, 12 Apr 2026 04:10:50 +0100 Subject: 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. --- kaakaa/tea.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kaakaa/tea.scm') 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)))))) -- cgit 1.4.1