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-07-07 14:26:37 +08:00
|
|
|
}
|