2024-01-14 11:21:03 +00:00
|
|
|
package ali
|
|
|
|
|
2024-03-30 02:43:26 +00:00
|
|
|
import (
|
|
|
|
"github.com/songquanpeng/one-api/relay/channel/openai"
|
|
|
|
"github.com/songquanpeng/one-api/relay/model"
|
|
|
|
)
|
|
|
|
|
2024-01-14 11:21:03 +00:00
|
|
|
type Message struct {
|
|
|
|
Content string `json:"content"`
|
|
|
|
Role string `json:"role"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Input struct {
|
|
|
|
//Prompt string `json:"prompt"`
|
|
|
|
Messages []Message `json:"messages"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Parameters struct {
|
2024-04-03 16:46:30 +00:00
|
|
|
TopP float64 `json:"top_p,omitempty"`
|
|
|
|
TopK int `json:"top_k,omitempty"`
|
|
|
|
Seed uint64 `json:"seed,omitempty"`
|
|
|
|
EnableSearch bool `json:"enable_search,omitempty"`
|
|
|
|
IncrementalOutput bool `json:"incremental_output,omitempty"`
|
|
|
|
MaxTokens int `json:"max_tokens,omitempty"`
|
|
|
|
Temperature float64 `json:"temperature,omitempty"`
|
|
|
|
ResultFormat string `json:"result_format,omitempty"`
|
|
|
|
Tools []model.Tool `json:"tools,omitempty"`
|
2024-01-14 11:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ChatRequest struct {
|
2024-04-03 16:46:30 +00:00
|
|
|
Model string `json:"model"`
|
|
|
|
Input Input `json:"input"`
|
|
|
|
Parameters Parameters `json:"parameters,omitempty"`
|
2024-01-14 11:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type EmbeddingRequest struct {
|
|
|
|
Model string `json:"model"`
|
|
|
|
Input struct {
|
|
|
|
Texts []string `json:"texts"`
|
|
|
|
} `json:"input"`
|
|
|
|
Parameters *struct {
|
|
|
|
TextType string `json:"text_type,omitempty"`
|
|
|
|
} `json:"parameters,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Embedding struct {
|
|
|
|
Embedding []float64 `json:"embedding"`
|
|
|
|
TextIndex int `json:"text_index"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type EmbeddingResponse struct {
|
|
|
|
Output struct {
|
|
|
|
Embeddings []Embedding `json:"embeddings"`
|
|
|
|
} `json:"output"`
|
|
|
|
Usage Usage `json:"usage"`
|
|
|
|
Error
|
|
|
|
}
|
|
|
|
|
|
|
|
type Error struct {
|
|
|
|
Code string `json:"code"`
|
|
|
|
Message string `json:"message"`
|
|
|
|
RequestId string `json:"request_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Usage struct {
|
|
|
|
InputTokens int `json:"input_tokens"`
|
|
|
|
OutputTokens int `json:"output_tokens"`
|
|
|
|
TotalTokens int `json:"total_tokens"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Output struct {
|
2024-03-30 02:43:26 +00:00
|
|
|
//Text string `json:"text"`
|
|
|
|
//FinishReason string `json:"finish_reason"`
|
|
|
|
Choices []openai.TextResponseChoice `json:"choices"`
|
2024-01-14 11:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ChatResponse struct {
|
|
|
|
Output Output `json:"output"`
|
|
|
|
Usage Usage `json:"usage"`
|
|
|
|
Error
|
|
|
|
}
|