Skip to main content

A FastAPI proxy server for vLLM w/wo SLURM support and automatic process management

Project description

llm-proxy-ondemand

A FastAPI proxy server for vLLM with SLURM support and automatic process management.

Features

  • On-demand vLLM server startup: The vLLM server is only started when the first request is received
  • SLURM integration: Run vLLM on SLURM clusters with SSH reverse tunneling
  • Automatic port management: Auto-select available ports if not specified
  • Idle timeout: Automatically shutdown vLLM server after a configurable period of inactivity
  • OpenAI-compatible API: Proxy all vLLM OpenAI-compatible endpoints (/v1/chat/completions, /v1/models, etc.)
  • Health monitoring: Built-in health endpoint for monitoring
  • Flexible command handling: Works with any vLLM-compatible server command (as long as target run command has --host and --port)

Installation

pip install llm-proxy-ondemand

Or install from source:

git clone <repository-url>
cd llm-proxy-ondemand
pip install -e .

Usage

Basic Usage

Start a proxy server that will launch vLLM on-demand:

llm-proxy-ondemand -- uv run --with vllm python -m vllm.entrypoints.openai.api_server --model tiiuae/falcon3-10b-instruct

Note: Use -- to separate llm-proxy-ondemand options from the vLLM command.

This will:

  • Start FastAPI server on port 8100 (default)
  • Auto-select an available port for vLLM (starting from 8101)
  • Launch vLLM when the first request is received
  • Shutdown vLLM after 30 minutes of inactivity

Custom Ports

llm-proxy-ondemand --port 8085 --target-port 8084 -- uv run --with vllm python -m vllm.entrypoints.openai.api_server --model some-model

SLURM Integration

For running on SLURM clusters with SSH reverse tunneling:

llm-proxy-ondemand --use-slurm --loopback-user e123456 --loopback-host 10.10.10.5 -- \
  uv run --with vllm python -m vllm.entrypoints.openai.api_server \
  --model tiiuae/falcon3-10b-instruct \
  --api-key apikey \
  --tensor-parallel-size 1

Custom SLURM Resources

llm-proxy-ondemand --use-slurm --srun-cmd "srun --mem=60G --gres=gpu:2 --time=4:00:00" \
  --loopback-user e123456 --loopback-host 10.10.10.5 -- \
  uv run --with vllm python -m vllm.entrypoints.openai.api_server --model some-model

# A working example
uv run --with vllm --with numpy==1.26.4 --with flashinfer-python==0.2.2 llm-proxy-ondemand --use-slurm --loopback-user e128356 --loopback-host 10.205.51.153 --api-key password -- python -m vllm.entrypoints.openai.api_server --model Qwen/Qwen3-0.6B

Issues that are hard to debug:

  • Wrong ssh username or password, check the logging output files.

Custom Idle Timeout

llm-proxy-ondemand --idle-timeout 3600 -- uv run --with vllm python -m vllm.entrypoints.openai.api_server --model some-model

Command Line Options

  • --port: Port for the FastAPI proxy server (default: 8100)
  • --target-port: Port for the vLLM server (default: auto-select from 8101+)
  • --use-slurm: Use SLURM to run the vLLM server
  • --srun-cmd: SLURM srun command (default: "srun --mem=30G --gres=gpu:1")
  • --loopback-user: SSH user for reverse tunneling (required with --use-slurm)
  • --loopback-host: SSH host for reverse tunneling (required with --use-slurm)
  • --idle-timeout: Idle timeout in seconds before shutting down vLLM server (default: 1800)
  • --ping-path: Path to ping the target server to check if it's ready (default: /ping)
  • --log-level: Logging level (DEBUG, INFO, WARNING, ERROR, default: INFO)
  • --api-key: API key for Bearer token authentication (optional)

API Endpoints

Health Check

curl http://localhost:8100/health

Response:

{
  "status": "healthy",
  "llm_running": false,
  "target_port": 8101,
  "last_request": 1640995200.0
}

OpenAI-Compatible Endpoints

All vLLM OpenAI-compatible endpoints are proxied:

  • POST /v1/chat/completions - Chat completions
  • GET /v1/models - List available models
  • And any other /v1/* endpoints supported by vLLM

Example:

curl -X POST http://localhost:8100/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "tiiuae/falcon3-10b-instruct",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

How It Works

  1. Startup: llm-proxy-ondemand starts a FastAPI server immediately
  2. First Request: When a request is made to /v1/*, the vLLM server is started
  3. Proxying: All subsequent requests are forwarded to the vLLM server
  4. Idle Monitoring: After the configured idle timeout, the vLLM server is shutdown
  5. Auto-restart: The vLLM server will be restarted on the next request

SLURM Integration Details

When using --use-slurm, llm-proxy-ondemand:

  1. Constructs a SLURM job using the provided --srun-cmd
  2. Sets up SSH reverse tunneling from the compute node back to the proxy server
  3. Runs the vLLM command on the compute node
  4. Forwards requests through the SSH tunnel

The generated SLURM command looks like:

srun --mem=30G --gres=gpu:1 bash -c "
# Start reverse SSH tunnel in background
ssh -v -N -f -R 8101:localhost:8101 user@host

# Start vLLM server
uv run --with vllm python -m vllm.entrypoints.openai.api_server --host 0.0.0.0 --port 8101 --model some-model
"

Requirements

For SLURM usage:

  • SSH access from compute node to current node
  • Proper SSH key setup for password-less authentication

Development

git clone <repository-url>
cd llm-proxy-ondemand
pip install -e .

License

MIT License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llm_proxy_ondemand-0.1.1.tar.gz (49.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

llm_proxy_ondemand-0.1.1-py3-none-any.whl (11.9 kB view details)

Uploaded Python 3

File details

Details for the file llm_proxy_ondemand-0.1.1.tar.gz.

File metadata

  • Download URL: llm_proxy_ondemand-0.1.1.tar.gz
  • Upload date:
  • Size: 49.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.12

File hashes

Hashes for llm_proxy_ondemand-0.1.1.tar.gz
Algorithm Hash digest
SHA256 25209f49b193e302406c3eec19cf7948f37212068bb57c37a675455b3098bd80
MD5 a90fada2bb7b7649526bc11c71c42490
BLAKE2b-256 13e0c62ab738ee04a65bc3d038dc20300278c6701c273692a7612c2d6ce23f07

See more details on using hashes here.

File details

Details for the file llm_proxy_ondemand-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for llm_proxy_ondemand-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 30b405fcaff468ab36ed247158fc363083b3a8c23753324aa90f0e7e179c36ba
MD5 13639c22a6a7a4eee9ac1bc56b38fb61
BLAKE2b-256 230c2ad3a125bfcc96a30adf5b87cc5f8a654830914997bdcce63f69f9e57d22

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page