mirror of
https://github.com/mudler/LocalAI.git
synced 2025-03-13 07:54:34 +00:00
* squash past, centralize request middleware PR Signed-off-by: Dave Lee <dave@gray101.com> * migrate bruno request files to examples repo Signed-off-by: Dave Lee <dave@gray101.com> * fix Signed-off-by: Dave Lee <dave@gray101.com> * Update tests/e2e-aio/e2e_test.go Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com> --------- Signed-off-by: Dave Lee <dave@gray101.com> Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com> Co-authored-by: Ettore Di Giacinto <mudler@users.noreply.github.com>
36 lines
994 B
Go
36 lines
994 B
Go
package schema
|
|
|
|
// RerankRequest defines the structure of the request payload
|
|
type JINARerankRequest struct {
|
|
BasicModelRequest
|
|
Query string `json:"query"`
|
|
Documents []string `json:"documents"`
|
|
TopN int `json:"top_n"`
|
|
Backend string `json:"backend"`
|
|
}
|
|
|
|
// DocumentResult represents a single document result
|
|
type JINADocumentResult struct {
|
|
Index int `json:"index"`
|
|
Document JINAText `json:"document"`
|
|
RelevanceScore float64 `json:"relevance_score"`
|
|
}
|
|
|
|
// Text holds the text of the document
|
|
type JINAText struct {
|
|
Text string `json:"text"`
|
|
}
|
|
|
|
// RerankResponse defines the structure of the response payload
|
|
type JINARerankResponse struct {
|
|
Model string `json:"model"`
|
|
Usage JINAUsageInfo `json:"usage"`
|
|
Results []JINADocumentResult `json:"results"`
|
|
}
|
|
|
|
// UsageInfo holds information about usage of tokens
|
|
type JINAUsageInfo struct {
|
|
TotalTokens int `json:"total_tokens"`
|
|
PromptTokens int `json:"prompt_tokens"`
|
|
}
|