mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-17 17:16:38 +08:00
18 lines
272 B
Go
18 lines
272 B
Go
package relaymode
|
|
|
|
const (
|
|
Unknown = iota
|
|
ChatCompletions
|
|
Completions
|
|
Embeddings
|
|
Moderations
|
|
ImagesGenerations
|
|
Edits
|
|
AudioSpeech
|
|
AudioTranscription
|
|
AudioTranslation
|
|
ImagesEdits
|
|
// Proxy is a special relay mode for proxying requests to custom upstream
|
|
Proxy
|
|
)
|