Spaces:
Configuration error
Configuration error
File size: 372 Bytes
6ce3fc3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | services:
- type: web
name: memorybot
runtime: python
buildCommand: pip install -r requirements.txt
startCommand: uvicorn main:app --host 0.0.0.0 --port 10000
envVars:
- key: SECRET_KEY
sync: false
- key: ENCRYPTION_KEY
sync: false
- key: OPENAI_API_KEY
sync: false
- key: HF_TOKEN
sync: false
|