---
title: vLLM
---
To use Open Interpreter with vLLM, you will need to:
1. `pip install vllm`
2. Set the api_base flag:
```bash Terminal
interpreter --api_base
```
```python Python
from interpreter import interpreter
interpreter.llm.api_base = ""
interpreter.chat()
```
3. Set the `model` flag:
```bash Terminal
interpreter --model vllm/
```
```python Python
from interpreter import interpreter
interpreter.llm.model = "vllm/"
interpreter.chat()
```
# Supported Models
All models from VLLM should be supported