lk156/scnet-ds2
0
SCNet OpenAI Compatible Proxy
OpenAI-compatible API proxy for SCNet.
Endpoints
POST /v1/chat/completionsGET /v1/models
Required Secrets
Set these in Hugging Face Space:
API_KEY: your own API key for protecting this proxySCNET_USERNAME: optional, SCNet usernameSCNET_PASSWORD: optional, SCNet passwordSCNET_MAX_SESSIONS: optional, default10VERBOSE: optional,falserecommended
Example request
curl -X POST "https://YOUR_USERNAME-YOUR_SPACE_NAME.hf.space/v1/chat/completions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-v4-pro",
"messages": [
{"role": "user", "content": "你好"}
],
"stream": false
}'