Skip to content

Commit

Permalink
update readme and version
Browse files Browse the repository at this point in the history
  • Loading branch information
RexWzh committed Mar 10, 2024
1 parent b9c04c6 commit 8408c50
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 16 deletions.
27 changes: 18 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
# ChatAPI Toolkit
[![PyPI version](https://img.shields.io/pypi/v/chattool.svg)](https://pypi.python.org/pypi/chattool)
[![Tests](https://github.com/cubenlp/chattool/actions/workflows/test.yml/badge.svg)](https://github.com/cubenlp/chattool/actions/workflows/test.yml/)
[![Documentation Status](https://img.shields.io/badge/docs-github_pages-blue.svg)](https://chattool.cubenlp.com)
[![Coverage](https://codecov.io/gh/cubenlp/chattool/branch/master/graph/badge.svg)](https://codecov.io/gh/cubenlp/chattool)

<!--
[![Updates](https://pyup.io/repos/github/cubenlp/chattool/shield.svg)](https://pyup.io/repos/github/cubenlp/chattool/)
-->
<div align="center">
<a href="https://pypi.python.org/pypi/chattool">
<img src="https://img.shields.io/pypi/v/chattool.svg" alt="PyPI version" />
</a>
<a href="https://github.com/cubenlp/chattool/actions/workflows/test.yml">
<img src="https://github.com/cubenlp/chattool/actions/workflows/test.yml/badge.svg" alt="Tests" />
</a>
<a href="https://chattool.cubenlp.com">
<img src="https://img.shields.io/badge/docs-github_pages-blue.svg" alt="Documentation Status" />
</a>
<a href="https://codecov.io/gh/cubenlp/chattool">
<img src="https://codecov.io/gh/cubenlp/chattool/branch/master/graph/badge.svg" alt="Coverage" />
</a>
</div>

<div align="center">
<img src="https://qiniu.wzhecnu.cn/PicBed6/picgo/chattool.jpeg" alt="ChatAPI Toolkit" width="256">

[English](README_en.md) | [简体中文](README.md)
</div>

基于 API 的简单封装,支持多轮对话,代理,以及异步处理数据等。

Expand Down
26 changes: 21 additions & 5 deletions README_en.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,24 @@
# ChatAPI Toolkit
[![PyPI version](https://img.shields.io/pypi/v/chattool.svg)](https://pypi.python.org/pypi/chattool)
[![Tests](https://github.com/cubenlp/chattool/actions/workflows/test.yml/badge.svg)](https://github.com/cubenlp/chattool/actions/workflows/test.yml/)
[![Documentation Status](https://img.shields.io/badge/docs-github_pages-blue.svg)](https://chattool.cubenlp.com)
[![Coverage](https://codecov.io/gh/cubenlp/chattool/branch/master/graph/badge.svg)](https://codecov.io/gh/cubenlp/chattool)
<div align="center">
<a href="https://pypi.python.org/pypi/chattool">
<img src="https://img.shields.io/pypi/v/chattool.svg" alt="PyPI version" />
</a>
<a href="https://github.com/cubenlp/chattool/actions/workflows/test.yml">
<img src="https://github.com/cubenlp/chattool/actions/workflows/test.yml/badge.svg" alt="Tests" />
</a>
<a href="https://chattool.cubenlp.com">
<img src="https://img.shields.io/badge/docs-github_pages-blue.svg" alt="Documentation Status" />
</a>
<a href="https://codecov.io/gh/cubenlp/chattool">
<img src="https://codecov.io/gh/cubenlp/chattool/branch/master/graph/badge.svg" alt="Coverage" />
</a>
</div>

<div align="center">
<img src="https://qiniu.wzhecnu.cn/PicBed6/picgo/chattool.jpeg" alt="ChatAPI Toolkit" width="256">

[English](README_en.md) | [简体中文](README.md)
</div>


<!--
[![Updates](https://pyup.io/repos/github/cubenlp/chattool/shield.svg)](https://pyup.io/repos/github/cubenlp/chattool/)
Expand Down
2 changes: 1 addition & 1 deletion chattool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Rex Wang"""
__email__ = '1073853456@qq.com'
__version__ = '3.1.1'
__version__ = '3.1.2'

import os, sys, requests
from .chattype import Chat, Resp
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
with open('README.md') as readme_file:
readme = readme_file.read()

VERSION = '3.1.1'
VERSION = '3.1.2'

requirements = [
'Click>=7.0', 'requests>=2.20', "responses>=0.23", 'aiohttp>=3.8',
Expand Down

0 comments on commit 8408c50

Please sign in to comment.