An open API service indexing awesome lists of open source software.

https://github.com/dstack-tee/vllm-proxy


https://github.com/dstack-tee/vllm-proxy

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

          

# VLLM Proxy

A proxy for vLLM.

## Requirements

- Python 3.12+

## Run for development

```bash
# 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
bash docker/build.sh
```

### Run for production

```bash
cd docker
docker compose up -d
```

## Tests

### Quick Start

```bash
python3 -m venv .venv
. .venv/bin/activate
pip install -r requirements.txt
pip install -r test-requirements.txt
./run_tests.sh
```

For detailed testing documentation, see [TESTING.md](./docs/TESTING.md).