2024-04-26 15:05:48 +00:00
|
|
|
package cloudflare
|
|
|
|
|
2024-07-06 05:12:30 +00:00
|
|
|
import "github.com/songquanpeng/one-api/relay/model"
|
2024-04-26 15:05:48 +00:00
|
|
|
|
2024-07-06 05:12:30 +00:00
|
|
|
type Request struct {
|
|
|
|
Messages []model.Message `json:"messages,omitempty"`
|
|
|
|
Lora string `json:"lora,omitempty"`
|
|
|
|
MaxTokens int `json:"max_tokens,omitempty"`
|
|
|
|
Prompt string `json:"prompt,omitempty"`
|
|
|
|
Raw bool `json:"raw,omitempty"`
|
|
|
|
Stream bool `json:"stream,omitempty"`
|
|
|
|
Temperature float64 `json:"temperature,omitempty"`
|
2024-04-26 15:05:48 +00:00
|
|
|
}
|