Remove json tags from internal structs

JSON marshaling uses field names directly; explicit tags
are unnecessary at this level.

Signed-off-by: Aurélien Sibiril <81782+aureliensibiril@users.noreply.github.com>
This commit is contained in:
Aurélien Sibiril
2026-04-13 23:01:32 +02:00
parent 7058d310b0
commit ff18a5fc23
4 changed files with 27 additions and 30 deletions

View File

@@ -25,8 +25,8 @@ import (
type (
ToolResult struct {
Content string `json:"content"`
IsError bool `json:"is_error"`
Content string
IsError bool
}
// ToolDescriptor describes a tool's name and LLM definition.