mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-29 06:36:38 +08:00
11 lines
349 B
Go
11 lines
349 B
Go
package model
|
|
|
|
type RerankRequest struct {
|
|
Model string `json:"model"`
|
|
Documents []string `json:"documents"`
|
|
Query string `json:"query"`
|
|
TopN *int `json:"top_n,omitempty"`
|
|
MaxChunksPerDoc *int `json:"max_chunks_per_doc,omitempty"`
|
|
ReturnDocuments *bool `json:"return_documents,omitempty"`
|
|
}
|