Metadata-Version: 2.4
Name: llmskit
Version: 0.0.5
Summary: Client and Tools for LLMs
Author-email: hongbo liu <bananabo@foxmail.com>
License: Apache-2.0
Project-URL: Homepage, https://gitee.com/maxbanana
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.27.0
Requires-Dist: loguru>=0.7.2
Requires-Dist: openai>=2.14.0
Requires-Dist: tenacity>=8.2.3
Dynamic: license-file

# llmskit
统一的LLM客户端与工具

## Documentation

完整的 API 文档待补充

## Installation

```bash
pip install llmskit
```

## Usage

```python3
# 调用embedding
from llmskit import OpenAIEmbeddings, AsyncOpenAIEmbeddings
# 调用LLM
from llmskit import ChatLLM, AsyncChatLLM, OpenAIClient, AsyncOpenAIClient, AzureOpenAIClient,
    AsyncAzureOpenAIClient
```

## Todo
```python3
import openai
openai.responses.create()
```
