Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions internal/daemon/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@
InputSchema interface{} `json:"inputSchema"`
}

type ToolCall struct {

Check failure on line 86 in internal/daemon/types.go

View workflow job for this annotation

GitHub Actions / build

other declaration of ToolCall
Tool string `json:"tool"`
Arguments map[string]interface{} `json:"arguments"`
}

type MCPRegisteredPayload struct {
Status string `json:"status"`
ServerID string `json:"server_id"`
Expand All @@ -93,7 +98,7 @@
Reason string `json:"reason"`
}

type ToolCall struct {

Check failure on line 101 in internal/daemon/types.go

View workflow job for this annotation

GitHub Actions / build

ToolCall redeclared in this block
Tool string `json:"tool"`
Arguments map[string]interface{} `json:"arguments"`
}
Expand Down
Loading