mirror of
https://github.com/coaidev/coai.git
synced 2025-06-07 14:20:20 +09:00
17 lines
432 B
Go
17 lines
432 B
Go
package bing
|
|
|
|
// see https://github.com/Deeptrain-Community/chatnio-bing-service
|
|
|
|
type ChatRequest struct {
|
|
Prompt string `json:"prompt"`
|
|
Cookies *map[string]interface{} `json:"cookies"`
|
|
Model string `json:"model"`
|
|
}
|
|
|
|
type ChatResponse struct {
|
|
Response string `json:"response"`
|
|
Suggested []string `json:"suggested"`
|
|
Error string `json:"error"`
|
|
End bool `json:"end"`
|
|
}
|