mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-29 06:36:38 +08:00
24 lines
458 B
Go
24 lines
458 B
Go
package openai
|
|
|
|
import "one-api/types"
|
|
|
|
type OpenAIProviderChatResponse struct {
|
|
types.ChatCompletionResponse
|
|
types.OpenAIErrorResponse
|
|
}
|
|
|
|
type OpenAIProviderChatStreamResponse struct {
|
|
types.ChatCompletionStreamResponse
|
|
types.OpenAIErrorResponse
|
|
}
|
|
|
|
type OpenAIProviderCompletionResponse struct {
|
|
types.CompletionResponse
|
|
types.OpenAIErrorResponse
|
|
}
|
|
|
|
type OpenAIProviderEmbeddingsResponse struct {
|
|
types.EmbeddingResponse
|
|
types.OpenAIErrorResponse
|
|
}
|