Openaibot Versions Save

⚡️ Build Your Own chatgpt Bot|🧀 Discord/Slack/Kook/Telegram |⛓ ToolCall|🔖 Plugin Support | 🌻 out-of-box | gpt-4-turbo

pypi_1.0.0

1 month ago

Break Change

Redis and MongoDB are no longer necessary. Reconfigure environment variables. Reinstall Python dependencies. Docker deployment is currently untested.

Fixed most of the issues

app_4.0.0

1 month ago

pypi0.27.3

4 months ago

pypi0.27.2

6 months ago
  • 定义插件对系统的交互
  • 修复插件的循环引用
  • 修复重新排序错误
  • 可以同时定义 需要虚拟环境变量静默启动 属性。
  • 提供 Ffmpeg 工具类将任意语音转换为 Telegram Voice

lib0.27.1

6 months ago

Fix

Change

  • Pin Docker to the last available version/固定 Docker 为最后可用版本
  • remove requirements.txt

Full Changelog: https://github.com/LlmKira/Openaibot/compare/nolib0.27.0_5...lib0.27.1

nolib0.27.0_5

6 months ago

nolib0.27.0_4

6 months ago

nolib0.27.0_3

6 months ago

nolib0.27.0_1

6 months ago

lib0.27.0

6 months ago

⚠️ Broken Change

This version passes basic testing and syntax checking, but unexpected things may happen. 此版本通过基本测试和语法检查,但可能有意料之外的情况发生。

📦 Change

  • 大多数接口被重构,PluginOpenapi 版本升级到 20231111
  • 支持新的函数并行处理
  • 支持 GPT-4 Turbo with vision 图传
  • 适配性增强
  • 修复 Bug
  • 优化了传递速度
  • 定制函数规范
  • Standardized plugin system

📦 Change

  • Most interfaces have been refactored, and the PluginOpenapi version has been upgraded to 20231111
  • Support new function parallel processing(tools call)
  • Support GPT-4 Turbo with vision
  • Adaptability enhancement
  • Bug fixes
  • Optimized delivery speed
  • Custom function specification
  • Standardized plugin system

📦 All models can customize Schema

Example from code


SCHEMA_GROUP.add_model(
    models=[
        SingleModel(
            model_name="chatglm3",
            token_limit=4096,
            request=Openai,
            response=OpenaiResult,
            schema_type="openai",
            func_executor="function_call",
            exception=None
        ),
        SingleModel(
            model_name="chatglm3-16k",
            token_limit=16384,
            request=Openai,
            response=OpenaiResult,
            schema_type="openai",
            func_executor="function_call",
            exception=None
        ),
    ]
)

What's Changed

Full Changelog: https://github.com/LlmKira/Openaibot/compare/nolib0.26.3_3...lib0.27.0