CoolFace
Apppublic

servionn-model/servionn-deepseek-coder

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes
App README

Servionn DeepSeek-Coder API

A local DeepSeek-Coder model server with OpenAI-compatible API endpoints.

API Endpoints

  • GET /health - Health check
  • POST /generate - Simple text generation
  • POST /v1/chat/completions - OpenAI-compatible chat API

Example Usage

bash
curl -X POST https://YOUR-SPACE.hf.space/generate \
  -H "Content-Type: application/json" \
  -d '{"prompt": "Write a hello world in Python"}'