File size: 542 Bytes
67e8759 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Hugging Face Space secrets example
Create these in your Space: Settings -> Variables and secrets.
## DS2API_ADMIN_KEY
Use a strong random value, for example:
```text
replace-with-a-long-random-admin-key
```
## DS2API_CONFIG_JSON
Copy `config.example.json`, edit it, then paste the entire JSON as a secret. Minimal shape:
```json
{
"keys": ["your-openai-compatible-client-key"],
"accounts": [
{
"name": "main",
"email": "your-deepseek-email@example.com",
"password": "your-deepseek-password"
}
]
}
```
|