Skip to content

Files

Failed to load latest commit information.

Latest commit

 Cannot retrieve latest commit at this time.

History

History

vllm-proxy

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

VLLM Proxy

A proxy for vLLM.

Run for development

# Run production server
uvicorn main:app --host 0.0.0.0 --reload

# Run development server
fastapi dev main.py --host 0.0.0.0

Production

Build for production

bash docker/build.sh

Run for production

cd docker
docker compose up -d

Tests

cd src
python -m unittest tests