2025-03-16 21:06:29 +08:00
|
|
|
package xinference
|
|
|
|
|
|
|
|
|
|
type XinRerankResponseDocument struct {
|
2025-06-25 18:04:34 +08:00
|
|
|
Document any `json:"document,omitempty"`
|
2025-03-16 21:06:29 +08:00
|
|
|
Index int `json:"index"`
|
|
|
|
|
RelevanceScore float64 `json:"relevance_score"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type XinRerankResponse struct {
|
|
|
|
|
Results []XinRerankResponseDocument `json:"results"`
|
|
|
|
|
}
|