Spaces:
Paused
Paused
Add config.yaml for UI setup
Browse files- config.yaml +15 -0
config.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
model_list:
|
| 2 |
+
- model_name: gpt-3.5-turbo
|
| 3 |
+
litellm_params:
|
| 4 |
+
model: gpt-3.5-turbo
|
| 5 |
+
|
| 6 |
+
general_settings:
|
| 7 |
+
master_key: "sk-1234"
|
| 8 |
+
port: 8080 # Changed to 8080 for Hugging Face spaces
|
| 9 |
+
# Enable UI dashboard
|
| 10 |
+
ui_features:
|
| 11 |
+
analytics_dashboard: true
|
| 12 |
+
model_config_management: true
|
| 13 |
+
key_management: true
|
| 14 |
+
allow_origins: ["*"] # Allow cross-origin requests
|
| 15 |
+
start_server: true
|