Skip to main content

Toolkit for Chat API

Project description

ChatAPI Toolkit

PyPI version Tests Documentation Status Coverage

English | 简体中文

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

安装方法

pip install chattool --upgrade

使用方法

设置密钥和代理链接

通过环境变量设置密钥和代理,比如在 ~/.bashrc 或者 ~/.zshrc 中追加

export OPENAI_API_KEY="sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
export OPENAI_API_BASE="https://api.example.com/v1"
export OPENAI_API_BASE_URL="https://api.example.com" # 可选

Win 在系统中设置环境变量。

注:环境变量中,OPENAI_API_BASE 优先于 OPENAI_API_BASE_URL,二者选其一即可。

示例

示例1,模拟多轮对话:

# 初次对话
chat = Chat("Hello, GPT-3.5!")
resp = chat.getresponse()

# 继续对话
chat.user("How are you?")
next_resp = chat.getresponse()

# 人为添加返回内容
chat.user("What's your name?")
chat.assistant("My name is GPT-3.5.")

# 保存对话内容
chat.save("chat.json", mode="w") # 默认为 "a"

# 打印对话历史
chat.print_log()

示例2,批量处理数据(串行),并使用缓存文件 checkpoint

# 编写处理函数
def msg2chat(msg):
    chat = Chat()
    chat.system("你是一个熟练的数字翻译家。")
    chat.user(f"请将该数字翻译为罗马数字:{msg}")
    # 注意,在函数内获取返回
    chat.getresponse()
    return chat

checkpoint = "chat.jsonl" # 缓存文件的名称
msgs = ["1", "2", "3", "4", "5", "6", "7", "8", "9"]
# 处理部分数据
chats = process_chats(msgs[:5], msg2chat, checkpoint)
# 处理所有数据,从上一次处理的位置继续
continue_chats = process_chats(msgs, msg2chat, checkpoint)

示例3,批量处理数据(异步并行),用不同语言打印 hello,并使用两个协程:

from chattool import async_chat_completion, load_chats, Chat

langs = ["python", "java", "Julia", "C++"]
def data2chat(msg):
    chat = Chat()
    chat.user("请用语言 %s 打印 hello world" % msg)
    # 注意,这里不需要 getresponse 而交给异步处理
    return chat

async_chat_completion(langs, chkpoint="async_chat.jsonl", nproc=2, data2chat=data2chat)
chats = load_chats("async_chat.jsonl")

示例4,使用工具(自定义函数):

# 定义函数
def add(a: int, b: int) -> int:
    """
    This function adds two numbers.

    Parameters:
        a (int): The first number.
        b (int): The second number.

    Returns:
        int: The sum of the two numbers.
    """
    return a + b
# 传输函数
chat = Chat()
chat.setfuncs([add]) # 传入函数列表,可以是多个函数
chat.user("请计算 1 + 2")
# 自动调用工具
chat.autoresponse(display=True)

开源协议

这个项目使用 MIT 协议开源。

更新日志

当前版本为 2.3.0,支持调用外部工具,异步处理数据,以及模型微调功能。

测试版本

  • 版本 0.2.0 改用 Chat 类型作为中心交互对象
  • 版本 0.3.0 开始不依赖模块 openai.py ,而是直接使用 requests 发送请求
    • 支持对每个 Chat 使用不同 API 密钥
    • 支持使用代理链接
  • 版本 0.4.0 开始,工具维护转至 CubeNLP 组织账号
  • 版本 0.5.0 开始,支持使用 process_chats 处理数据,借助 msg2chat 函数以及 checkpoint 文件
  • 版本 0.6.0 开始,支持 function call 功能
  • 版本 1.0.0 开始,支持异步处理数据
  • 版本 2.0.0 开始,模块更名为 chattool

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chattool-3.1.1.tar.gz (20.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

chattool-3.1.1-py3-none-any.whl (21.9 kB view details)

Uploaded Python 3

File details

Details for the file chattool-3.1.1.tar.gz.

File metadata

  • Download URL: chattool-3.1.1.tar.gz
  • Upload date:
  • Size: 20.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.8.18

File hashes

Hashes for chattool-3.1.1.tar.gz
Algorithm Hash digest
SHA256 3094376eba7b8a88ed87ad87e8c8d89e20a35a6b95456f980d7c5bdef0e0e06e
MD5 0b443d0e582e4d8d5cf364f349f7c584
BLAKE2b-256 492993d4c097677751494221ab2c7bad71e5826c647915ee6a7cfdacd2427954

See more details on using hashes here.

File details

Details for the file chattool-3.1.1-py3-none-any.whl.

File metadata

  • Download URL: chattool-3.1.1-py3-none-any.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.8.18

File hashes

Hashes for chattool-3.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0b1e430f907591910b7f92b46e35b614efafc11b99bb472172dcdb711990b6aa
MD5 d1459c0a51c65d1d12e0204c4c4f9aa5
BLAKE2b-256 7a6d77f8b78a84136a5f8a4614faa0cb2707b0c933fe208e48fd445ce3e0efd4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page