tgbot_misaka_5882f7/openai/chat.go

85 lines
3.4 KiB
Go
Raw Normal View History

2023-03-08 03:28:26 +09:00
package openai
const ChatAPIPath = "/v1/chat/completions"
type ChatRole string
const (
ChatRoleSystem ChatRole = "system"
2025-02-02 15:28:16 +09:00
ChatRoleDeveloper ChatRole = "developer" // replaces `system` role for o1 and newer models
ChatRoleTool ChatRole = "tool"
2023-03-08 03:28:26 +09:00
ChatRoleAssistant ChatRole = "assistant"
ChatRoleUser ChatRole = "user"
)
2025-02-02 15:28:16 +09:00
type ReasoningEffort string
const (
ReasoningEffortLow ReasoningEffort = "low"
ReasoningEffortMedium ReasoningEffort = "medium"
ReasoningEffortHigh ReasoningEffort = "high"
)
2023-03-08 03:28:26 +09:00
type ChatMessage struct {
Role ChatRole `json:"role"`
Content string `json:"content"`
}
type ChatRequest struct {
2025-02-02 15:28:16 +09:00
Model string `json:"model"`
Messages []ChatMessage `json:"messages"`
Temperature *float64 `json:"temperature,omitempty"` // What sampling temperature to use, between 0 and 2.
TopP *float64 `json:"top_p,omitempty"` // Nucleus sampling. Specify this or temperature but not both.
N int `json:"n,omitempty"` // How many chat completion choices to generate for each input message.
Stream bool `json:"stream,omitempty"` // If set, partial message deltas will be sent as data-only server-sent events as they become available.
Stop []string `json:"stop,omitempty"` // Up to 4 sequences where the API will stop generating further tokens.
MaxTokens int `json:"max_tokens,omitempty"` // Deprecated: in favor of `max_completion_tokens`
MaxCompletionTokens int `json:"max_completion_tokens,omitempty"` // Including visible output tokens and reasoning tokens.
PresencePenalty *float64 `json:"presence_penalty,omitempty"` // Number between -2.0 and 2.0.
FrequencyPenalty *float64 `json:"frequency_penalty,omitempty"` // Number between -2.0 and 2.0.
LogitBias map[string]float64 `json:"logit_bias,omitempty"` // Modify the likelihood of specified tokens appearing in the completion.
User string `json:"user,omitempty"` // A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse.
ReasoningEffort ReasoningEffort `json:"reasoning_effort,omitempty"` // Constrains effort on reasoning for reasoning models.
2023-03-08 03:28:26 +09:00
}
type ChatResponseChoice struct {
Message ChatMessage `json:"message"`
FinishReason string `json:"finish_reason"`
Index int `json:"index"`
}
type ChatResponse struct {
ID string `json:"id"`
Object string `json:"object"`
Created int `json:"created"`
Model string `json:"model"`
Usage map[string]int `json:"usage"`
Choices []ChatResponseChoice `json:"choices"`
}
2023-03-19 15:45:20 +09:00
type ChatResponseStream struct {
ID string
Object string
Created int
Model string
Stream chan string
Done chan struct{}
2023-03-19 15:45:20 +09:00
Err error
}
type ChatResponseStreamChunk struct {
ID string
Object string
Created int
Model string
Choices []ChatResponseStreamChoice
}
type ChatResponseStreamChoice struct {
Index int `json:"index"`
FinishReason string `json:"finish_reason"`
Delta struct {
Content string `json:"content"`
} `json:"delta"`
}