mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-04-18 11:17:27 +00:00
1. 将对SiliconFlow渠道的RelayModeImagesGenerations请求,转发至v1/images/generations端点。 2. SiliconFlow图像生成接口额外参数适配。
33 lines
1.0 KiB
Go
33 lines
1.0 KiB
Go
package siliconflow
|
|
|
|
import "github.com/QuantumNous/new-api/dto"
|
|
|
|
type SFTokens struct {
|
|
InputTokens int `json:"input_tokens"`
|
|
OutputTokens int `json:"output_tokens"`
|
|
}
|
|
|
|
type SFMeta struct {
|
|
Tokens SFTokens `json:"tokens"`
|
|
}
|
|
|
|
type SFRerankResponse struct {
|
|
Results []dto.RerankResponseResult `json:"results"`
|
|
Meta SFMeta `json:"meta"`
|
|
}
|
|
|
|
type SFImageRequest struct {
|
|
Model string `json:"model"`
|
|
Prompt string `json:"prompt"`
|
|
NegativePrompt string `json:"negative_prompt,omitempty"`
|
|
ImageSize string `json:"image_size,omitempty"`
|
|
BatchSize uint `json:"batch_size,omitempty"`
|
|
Seed uint64 `json:"seed,omitempty"`
|
|
NumInferenceSteps uint `json:"num_inference_steps,omitempty"`
|
|
GuidanceScale float64 `json:"guidance_scale,omitempty"`
|
|
Cfg float64 `json:"cfg,omitempty"`
|
|
Image string `json:"image,omitempty"`
|
|
Image2 string `json:"image2,omitempty"`
|
|
Image3 string `json:"image3,omitempty"`
|
|
}
|