mirror of
https://github.com/coaidev/coai.git
synced 2025-05-19 21:10:18 +09:00
53 lines
1.4 KiB
Go
53 lines
1.4 KiB
Go
package baichuan
|
|
|
|
import "chat/globals"
|
|
|
|
// Baichuan AI API is similar to OpenAI API
|
|
|
|
type ChatRequest struct {
|
|
Model string `json:"model"`
|
|
Messages []globals.Message `json:"messages"`
|
|
Stream bool `json:"stream"`
|
|
TopP *float32 `json:"top_p,omitempty"`
|
|
TopK *int `json:"top_k,omitempty"`
|
|
Temperature *float32 `json:"temperature,omitempty"`
|
|
WithSearchEnhance *bool `json:"with_search_enhance,omitempty"`
|
|
}
|
|
|
|
// ChatResponse is the native http request body for baichuan
|
|
type ChatResponse struct {
|
|
ID string `json:"id"`
|
|
Object string `json:"object"`
|
|
Created int64 `json:"created"`
|
|
Model string `json:"model"`
|
|
Choices []struct {
|
|
Message struct {
|
|
Content string `json:"content"`
|
|
}
|
|
} `json:"choices"`
|
|
Error struct {
|
|
Message string `json:"message"`
|
|
} `json:"error"`
|
|
}
|
|
|
|
// ChatStreamResponse is the stream response body for baichuan
|
|
type ChatStreamResponse struct {
|
|
ID string `json:"id"`
|
|
Object string `json:"object"`
|
|
Created int64 `json:"created"`
|
|
Model string `json:"model"`
|
|
Choices []struct {
|
|
Delta struct {
|
|
Content string `json:"content"`
|
|
}
|
|
Index int `json:"index"`
|
|
} `json:"choices"`
|
|
}
|
|
|
|
type ChatStreamErrorResponse struct {
|
|
Error struct {
|
|
Message string `json:"message"`
|
|
Type string `json:"type"`
|
|
} `json:"error"`
|
|
}
|