Skip to content

Releases: LlmKira/Openaibot

app_4.0.0_patch

17 Apr 08:48
c1b621d
Compare
Choose a tag to compare

Fix Bug

  • Redis Message Read

app_1.0.0 V4 refactor

17 Apr 05:18
a2408e7
Compare
Choose a tag to compare
Merge pull request #376 from LlmKira/dev

Refactor to v4

Update Duckduckgo_search && Usability maintenance

17 Jan 02:58
6185b1a
Compare
Choose a tag to compare
Merge pull request #363 from LlmKira/dev

Feature Pack

Llmkira Plugin OpenAPI

14 Nov 14:25
7df70f7
Compare
Choose a tag to compare
  • 定义插件对系统的交互
  • 修复插件的循环引用
  • 修复重新排序错误
  • 可以同时定义 需要虚拟环境变量静默启动 属性。
  • 提供 Ffmpeg 工具类将任意语音转换为 Telegram Voice

Update Pydantic && Update Ci

12 Nov 18:42
94e7b2f
Compare
Choose a tag to compare

Fix

Change

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

Full Changelog: nolib0.27.0_5...lib0.27.1

Fix Docker Ci

12 Nov 17:44
9e1e0ed
Compare
Choose a tag to compare
Fix Docker Ci Pre-release
Pre-release
nolib0.27.0_5

feat(docker):fixed version

Update Pydantic && Update Ci

12 Nov 17:19
0bf8263
Compare
Choose a tag to compare
Pre-release
:sparkles: feat: Add poetry==1.6.1 to Dockerfile

- Update Dockerfile to install poetry==1.6.1 alongside pm2 and npm

Update Pydantic && Update Ci

12 Nov 16:37
aa38991
Compare
Choose a tag to compare
Pre-release
nolib0.27.0_3

:construction: chore(Dockerfile): update poetry install command

Fix Docker Ci

11 Nov 17:09
f76144b
Compare
Choose a tag to compare
:hammer: chore(ci): update Docker actions versions

- Updated the version of `docker/setup-qemu-action` from v2 to v3
- Updated the version of `docker/setup-buildx-action` from v2 to v3
- Updated the version of `docker/login-action` from v2.1.0 to the latest version

This commit updates the versions of the Docker actions used in the CI workflow to their latest versions for better compatibility and performance.

0.27.0 Support GPT-4 Turbo with vision

11 Nov 17:03
9dbf980
Compare
Choose a tag to compare

⚠️ 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

  • Reworked the settings system to better support the plugin system by @sudoskys in #332

Full Changelog: nolib0.26.3_3...lib0.27.0