- Added Server Configuration settings page (backend + frontend) - Added .env config download/import API - Runtime config updates via UI - Support for all 3 themes (default, air, berry) - i18n support (zh/en)
17 lines
259 B
Go
17 lines
259 B
Go
package relaymode
|
|
|
|
const (
|
|
Unknown = iota
|
|
ChatCompletions
|
|
Completions
|
|
Embeddings
|
|
Moderations
|
|
ImagesGenerations
|
|
Edits
|
|
AudioSpeech
|
|
AudioTranscription
|
|
AudioTranslation
|
|
// Proxy is a special relay mode for proxying requests to custom upstream
|
|
Proxy
|
|
)
|