Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- package xinference
-
- type XinRerankResponseDocument struct {
- Document any `json:"document,omitempty"`
- Index int `json:"index"`
- RelevanceScore float64 `json:"relevance_score"`
- }
-
- type XinRerankResponse struct {
- Results []XinRerankResponseDocument `json:"results"`
- }
|