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
+1 -1
View File
@@ -258,7 +258,7 @@ fn extract_response(response: &Val) -> Result<(Option<String>, Option<String>),
for (name, val) in fields {
match name.as_str() {
"result" => {
"output" => {
if let Val::Option(Some(inner)) = val {
if let Val::String(s) = inner.as_ref() {
result = Some(s.to_string());