2024-04-05 16:44:33 +00:00
|
|
|
package relaymode
|
|
|
|
|
|
|
|
const (
|
|
|
|
Unknown = iota
|
|
|
|
ChatCompletions
|
|
|
|
Completions
|
|
|
|
Embeddings
|
|
|
|
Moderations
|
|
|
|
ImagesGenerations
|
|
|
|
Edits
|
|
|
|
AudioSpeech
|
|
|
|
AudioTranscription
|
|
|
|
AudioTranslation
|
2024-07-22 14:51:19 +00:00
|
|
|
// Proxy is a special relay mode for proxying requests to custom upstream
|
|
|
|
Proxy
|
2024-04-05 16:44:33 +00:00
|
|
|
)
|