mirror of
https://github.com/coaidev/coai.git
synced 2025-05-20 05:20:15 +09:00
14 lines
265 B
Go
14 lines
265 B
Go
package bing
|
|
|
|
// see https://github.com/Deeptrain-Community/chatnio-bing-service
|
|
|
|
type ChatRequest struct {
|
|
Prompt string `json:"prompt"`
|
|
Hash string `json:"hash"`
|
|
Model string `json:"model"`
|
|
}
|
|
|
|
type ChatResponse struct {
|
|
Response string `json:"response"`
|
|
}
|