mirror of
https://github.com/linux-do/new-api.git
synced 2025-09-18 00:16:37 +08:00
18 lines
347 B
Go
18 lines
347 B
Go
package siliconflow
|
|
|
|
import "one-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.RerankResponseDocument `json:"results"`
|
|
Meta SFMeta `json:"meta"`
|
|
}
|