Spaces:
Running
Running
File size: 1,364 Bytes
f0f6e5c 6b71ec0 f0f6e5c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |

A mini, open-weights version of our Proxy assistant.

---
## Getting Started
### Installation
Clone the repository:
```bash
git clone https://github.com/convergence-ai/proxy-lite.git
```
Set-up the environment with:
```bash
make proxy
```
Or do it manually:
```bash
uv venv --python 3.11 --python-preference managed
uv sync
uv pip install -e .
playwright install
```
### Usage
```bash
proxy --help
```
You can directly run the proxy with:
```bash
proxy "Book a table for 2 at an Italian restaurant in Kings Cross tonight at 7pm."
```
### Proxy-Lite Endpoint
By default, Proxy-Lite will point to an endpoint set up on HuggingFace spaces. This is a demo endpoint and is not suitable for production use; it may be very slow when under heavy load.
We recommend hosting your own endpoint with vLLM, you can use the following command:
```bash
vllm serve --model convergence-ai/proxy-lite-7b \
--trust-remote-code \
--enable-auto-tool-choice \
--tool-call-parser hermes \
--port 8008 \
```
You can set the `api_base` to point to your local endpoint when calling Proxy-Lite:
```bash
proxy --api-base http://localhost:8008/v1 "Book a table...
```
or by setting the environment variable:
```bash
export PROXY_LITE_API_BASE=http://localhost:8008/v1
```
|