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/tools.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kaakaa/tools.scm') diff --git a/kaakaa/tools.scm b/kaakaa/tools.scm index dc97492..50c2603 100644 --- a/kaakaa/tools.scm +++ b/kaakaa/tools.scm @@ -234,7 +234,7 @@ available tools to their respective @code{} objects." (tool-call-result (tool-call-session-id tool-call) (tool-call-id tool-call) (apply (tool-title tool) args) - (apply (tool-kind tool) args) + (tool-kind tool) (tool-call-arguments tool-call) `(("role" . "tool") ("tool_call_id" . ,(tool-call-id tool-call)) -- cgit 1.4.1