coai/adapter/bing/types.go
2023-10-06 10:49:40 +08:00

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"`
}