Files
new-api/relay/channel/xinference/dto.go
2025-03-16 21:06:29 +08:00

12 lines
291 B
Go

package xinference
type XinRerankResponseDocument struct {
Document string `json:"document,omitempty"`
Index int `json:"index"`
RelevanceScore float64 `json:"relevance_score"`
}
type XinRerankResponse struct {
Results []XinRerankResponseDocument `json:"results"`
}