2025-07-07 14:26:37 +08:00
|
|
|
package dto
|
|
|
|
|
|
|
|
|
|
type ChannelSettings struct {
|
2025-07-26 11:39:09 +08:00
|
|
|
ForceFormat bool `json:"force_format,omitempty"`
|
|
|
|
|
ThinkingToContent bool `json:"thinking_to_content,omitempty"`
|
|
|
|
|
Proxy string `json:"proxy"`
|
|
|
|
|
PassThroughBodyEnabled bool `json:"pass_through_body_enabled,omitempty"`
|
|
|
|
|
SystemPrompt string `json:"system_prompt,omitempty"`
|
2025-08-09 12:53:06 +08:00
|
|
|
SystemPromptOverride bool `json:"system_prompt_override,omitempty"`
|
2025-07-07 14:26:37 +08:00
|
|
|
}
|
2025-08-10 20:21:30 +08:00
|
|
|
|
|
|
|
|
type ChannelOtherSettings struct {
|
|
|
|
|
AzureResponsesVersion string `json:"azure_responses_version,omitempty"`
|
|
|
|
|
}
|