Metadata-Version: 2.2
Name: wlitellms
Version: 0.1.2
Summary: An litellm wrapper.
Home-page: https://github.com/bullgooo/wlitellms
Author: bullgooo
License: MIT
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: langchain-community>=0.3.19
Requires-Dist: langchain-openai>=0.3.1
Requires-Dist: langchain-deepseek>=0.1.2
Requires-Dist: litellm>=1.63.11
Requires-Dist: python-dotenv>=0.9.9
Requires-Dist: llama-index-embeddings-litellm==0.3.0
Requires-Dist: socksio>=1.0.0
Provides-Extra: test
Requires-Dist: ruff<1.0,>=0.9.9; extra == "test"
Requires-Dist: pytest>=8.0.0; extra == "test"
Provides-Extra: docs
Requires-Dist: sphinx>=7.2.0; extra == "docs"
Dynamic: home-page
Dynamic: requires-python

# wlitellms

Fork from langmanus's llms

## 编译

- 环境配置

```
conda create -n wlitellms python=3.12
conda activate wlitellms
```

- 安装依赖

```
pip install -e .
```

- 执行编译

```
python setup.py sdist bdist_wheel
```

- 发布

```
twine upload dist/*
```
