Load tools at launch

This commit is contained in:
Illia Polosukhin
2026-02-03 00:48:22 -08:00
parent 575269546b
commit 343782524f
6 changed files with 117 additions and 24 deletions
+2 -2
View File
@@ -112,8 +112,8 @@ interface tool {
/// Response from tool execution.
record response {
/// JSON-encoded result on success.
result: option<string>,
/// JSON-encoded output on success.
output: option<string>,
/// Error message on failure.
error: option<string>,
}