| Age | Commit message (Collapse) | Author |
|
Report tool call parse failures immediately to the LLM without
bothering the client with permission requests; only notify the client.
|
|
Parse tool call arguments in spec->tool-call and raise an exception on
failure.
|
|
We process tool calls one at a time using a new function
next-state-tool-call. We refactor next-state-llm-response to use
next-state-tool-call.
|
|
|
|
|
|
In doing so, we also change state->llm-request to state->llm-requests.
The new function now returns a list of <llm-request> objects rather
than a single one.
|
|
|
|
|
|
|