Metadata-Version: 2.5
Name: vela-llm
Version: 0.1.0
Summary: Local LiteLLM proxy for GitHub Copilot models with OpenAI and Anthropic-compatible APIs.
Requires-Python: >=3.11
Requires-Dist: fastapi>=0.115.0
Requires-Dist: httpx>=0.27.0
Requires-Dist: litellm[proxy]>=1.63.8
Requires-Dist: pydantic-settings>=2.4.0
Requires-Dist: python-dotenv>=1.0.1
Requires-Dist: uvicorn[standard]>=0.30.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.24.0; extra == 'dev'
Requires-Dist: pytest>=8.3.0; extra == 'dev'
Requires-Dist: ruff>=0.6.0; extra == 'dev'
Description-Content-Type: text/markdown

# vl

`vl` 是一个面向 GitHub Copilot Models 的本地 LiteLLM 代理，提供 OpenAI 和 Anthropic 兼容接口。服务默认仅监听 `127.0.0.1`。

## 安装

需要 Python 3.11+ 和 [uv](https://docs.astral.sh/uv/)：

```bash
uv tool install vela-llm
```

## 快速入门

```bash
# 登录 GitHub Copilot
vl login

# 启动本地代理
vl start

# 查看 API Key 和 Base URL
vl api
```
