ignore: cleanup

This commit is contained in:
Dax Raad
2025-08-03 17:08:42 -04:00
parent ed397c5057
commit a50bef6913
12 changed files with 297 additions and 1048 deletions

View File

@@ -151,6 +151,7 @@ type Mode struct {
Model ModeModel `json:"model"`
Prompt string `json:"prompt"`
Temperature float64 `json:"temperature"`
TopP float64 `json:"topP"`
JSON modeJSON `json:"-"`
}
@@ -161,6 +162,7 @@ type modeJSON struct {
Model apijson.Field
Prompt apijson.Field
Temperature apijson.Field
TopP apijson.Field
raw string
ExtraFields map[string]apijson.Field
}