mirror of
https://github.com/sipeed/picoclaw.git
synced 2026-06-12 18:08:54 +00:00
ec86b21d3f
- Preserve user's configured model during config migration (issue #5) - Simplify ExtractProtocol using strings.Cut - Extract NormalizeToolCall to shared utility, removing ~70 lines of duplicate code - Clean up unused fields in providerMigrationConfig struct Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
55 lines
1.6 KiB
Go
55 lines
1.6 KiB
Go
// PicoClaw - Ultra-lightweight personal AI agent
|
|
// License: MIT
|
|
//
|
|
// Copyright (c) 2026 PicoClaw contributors
|
|
|
|
package providers
|
|
|
|
import "encoding/json"
|
|
|
|
// NormalizeToolCall normalizes a ToolCall to ensure all fields are properly populated.
|
|
// It handles cases where Name/Arguments might be in different locations (top-level vs Function)
|
|
// and ensures both are populated consistently.
|
|
func NormalizeToolCall(tc ToolCall) ToolCall {
|
|
normalized := tc
|
|
|
|
// Ensure Name is populated from Function if not set
|
|
if normalized.Name == "" && normalized.Function != nil {
|
|
normalized.Name = normalized.Function.Name
|
|
}
|
|
|
|
// Ensure Arguments is not nil
|
|
if normalized.Arguments == nil {
|
|
normalized.Arguments = map[string]interface{}{}
|
|
}
|
|
|
|
// Parse Arguments from Function.Arguments if not already set
|
|
if len(normalized.Arguments) == 0 && normalized.Function != nil && normalized.Function.Arguments != "" {
|
|
var parsed map[string]interface{}
|
|
if err := json.Unmarshal([]byte(normalized.Function.Arguments), &parsed); err == nil && parsed != nil {
|
|
normalized.Arguments = parsed
|
|
}
|
|
}
|
|
|
|
// Ensure Function is populated with consistent values
|
|
argsJSON, _ := json.Marshal(normalized.Arguments)
|
|
if normalized.Function == nil {
|
|
normalized.Function = &FunctionCall{
|
|
Name: normalized.Name,
|
|
Arguments: string(argsJSON),
|
|
}
|
|
} else {
|
|
if normalized.Function.Name == "" {
|
|
normalized.Function.Name = normalized.Name
|
|
}
|
|
if normalized.Name == "" {
|
|
normalized.Name = normalized.Function.Name
|
|
}
|
|
if normalized.Function.Arguments == "" {
|
|
normalized.Function.Arguments = string(argsJSON)
|
|
}
|
|
}
|
|
|
|
return normalized
|
|
}
|