Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
snailyp/gemini-balance
dragg2
/
gg
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2abb814
gg
/
Dockerfile
snailyp
Update Dockerfile
2abb814
verified
8 months ago
raw
Copy download link
history
blame
Safe
215 Bytes
FROM
snailyp/openai-compatible-balance
EXPOSE
8000
ENV
BASE_URL=https://api.groq.com/openai/v1
ENV
ALLOWED_TOKENS=[
"123456"
]
ENV
API_KEYS=[
"DDD"
]
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"8000"
]