|
package model
|
|
|
|
import "github.com/sashabaranov/go-openai"
|
|
|
|
// ChatRequest 统一请求格式
|
|
type ChatRequest struct {
|
|
Model string
|
|
Messages []openai.ChatCompletionMessage
|
|
MaxTokens int
|
|
}
|
|
|
|
// ChatResponse 统一响应格式
|
|
type ChatResponse struct {
|
|
Content string
|
|
InputTokens int
|
|
OutputTokens int
|
|
}
|