imClumsyPanda 995c5e300e
Pre-release v0.3.0 (#4159)
* publish 0.2.10 (#2797)

新功能:
- 优化 PDF 文件的 OCR,过滤无意义的小图片 by @liunux4odoo #2525
- 支持 Gemini 在线模型 by @yhfgyyf #2630
- 支持 GLM4 在线模型 by @zRzRzRzRzRzRzR
- elasticsearch更新https连接 by @xldistance #2390
- 增强对PPT、DOC知识库文件的OCR识别 by @596192804 #2013
- 更新 Agent 对话功能 by @zRzRzRzRzRzRzR
- 每次创建对象时从连接池获取连接,避免每次执行方法时都新建连接 by @Lijia0 #2480
- 实现 ChatOpenAI 判断token有没有超过模型的context上下文长度 by @glide-the
- 更新运行数据库报错和项目里程碑 by @zRzRzRzRzRzRzR #2659
- 更新配置文件/文档/依赖 by @imClumsyPanda @zRzRzRzRzRzRzR
- 添加日文版 readme by @eltociear #2787

修复:
- langchain 更新后,PGVector 向量库连接错误 by @HALIndex #2591
- Minimax's model worker 错误 by @xyhshen 
- ES库无法向量检索.添加mappings创建向量索引 by MSZheng20 #2688

* Update README.md

* Add files via upload

* Update README.md

* 修复PDF旋转的BUG

* Support Chroma

* perf delete unused import

* 忽略测试代码

* 更新文件

* API前端丢失问题解决

* 更新了chromadb的打印的符号

* autodl代号错误

* Update README.md

* Update README.md

* Update README.md

* 修复milvus相关bug

* 支持星火3.5模型

* 修复es 知识库查询bug (#2848)

* 修复es 知识库查询bug (#2848)

* 更新zhipuai请求方式

* 增加对 .htm 扩展名的显式支持

* 更新readme

* Docker镜像制作与K8S YAML部署操作说明 (#2892)

* Dev (#2280)

* 修复Azure 不设置Max token的bug

* 重写agent

1. 修改Agent实现方式,支持多参数,仅剩 ChatGLM3-6b和 OpenAI GPT4 支持,剩余模型将在暂时缺席Agent功能
2. 删除agent_chat 集成到llm_chat中
3. 重写大部分工具,适应新Agent

* 更新架构

* 删除web_chat,自动融合

* 移除所有聊天,都变成Agent控制

* 更新配置文件

* 更新配置模板和提示词

* 更改参数选择bug

* 修复模型选择的bug

* 更新一些内容

* 更新多模态 语音 视觉的内容

1. 更新本地模型语音 视觉多模态功能并设置了对应工具

* 支持多模态Grounding

1. 美化了chat的代码
2. 支持视觉工具输出Grounding任务
3. 完善工具调用的流程

* 支持XPU,修改了glm3部分agent

* 添加 qwen agent

* 对其ChatGLM3-6B与Qwen-14B

* fix callback handler

* 更新Agent工具返回

* fix: LLMChain no output when no tools selected

* 跟新了langchain 0.1.x需要的依赖和修改的代码

* 更新chatGLM3 langchain0.1.x Agent写法

* 按照 langchain 0.1 重写 qwen agent

* 修复 callback 无效的问题

* 添加文生图工具

* webui 支持文生图

* 集成openai plugins插件

* 删除fastchat的配置

* 增加openai插件

* 集成openai plugins插件

* 更新模型执行列表和今晚修改的内容

* 集成openai_plugins/imitater插件

* 集成openai_plugins/imitater插件

* 集成openai_plugins/imitater插件

* 减少错误的显示

* 标准配置

* vllm参数配置

* 增加智谱插件

* 删除本地fschat配置

* 删除本地fschat配置,pydantic升级到2

* 删除本地fschat workers

* openai-plugins-list.json

* 升级agent,pydantic升级到2

* fix model_config是系统关键词问题

* embeddings模块集成openai plugins插件,使用统一api调用

* loom模型服务update_store更新逻辑

* 集成LOOM在线embedding业务

* 本地知识库搜索字段修改

* 知识库在线api接入点配置在线api接入点配置更新逻辑

* Update model_config.py.example

* 修改模型配置方式,所有模型以 openai 兼容框架的形式接入,chatchat 自身不再加载模型。
改变 Embeddings 模型改为使用框架 API,不再手动加载,删除自定义 Embeddings Keyword 代码
修改依赖文件,移除 torch transformers 等重依赖
暂时移出对 loom 的集成

后续:
1、优化目录结构
2、检查合并中有无被覆盖的 0.2.10 内容

* move document_loaders & text_splitter under server

* make torch & transformers optional
import pydantic Model & Field from langchain.pydantic_v1 instead of pydantic.v1

* - pydantic 限定为 v1,并统一项目中所有 pydantic 导入路径,为以后升级 v2 做准备
- 重构 api.py:
    - 按模块划分为不同的 router
    - 添加 openai 兼容的转发接口,项目默认使用该接口以实现模型负载均衡
    - 添加 /tools 接口,可以获取/调用编写的 agent tools
    - 移除所有 EmbeddingFuncAdapter,统一改用 get_Embeddings
    - 待办:
        - /chat/chat 接口改为 openai 兼容
        - 添加 /chat/kb_chat 接口,openai 兼容
        - 改变 ntlk/knowledge_base/logs 等数据目录位置

* 移除 llama-index 依赖;修复 /v1/models 错误

* 原因:windows下启动失败提示补充python-multipart包 (#3184)

改动:requirements添加python-multipart==0.0.9
版本:0.0.9  Requires: Python >=3.8

Co-authored-by: XuCai <liangxc@akulaku.com>

* 添加 xinference 本地模型和自定义模型配置 UI: streamlit run model_loaders/xinference_manager.py

* update xinference manager ui

* fix merge conflict

* model_config 中补充 oneapi 默认在线模型;/v1/models 接口支持 oneapi 平台,统一返回模型列表

* 重写 calculate 工具

* 调整根目录结构,kb/logs/media/nltk_data 移动到专用数据目录(可配置,默认 data)。注意知识库文件要做相应移动

* update kb_config.py.example

* 优化 ES 知识库
- 开发者
    - get_OpenAIClient 的 local_wrap 默认值改为 False,避免 API 服务未启动导致其它功能受阻(如Embeddings)
    - 修改 ES 知识库服务:
	- 检索策略改为 ApproxRetrievalStrategy
	- 设置 timeout 为 60, 避免文档过多导致 ConnecitonTimeout Error
    - 修改 LocalAIEmbeddings,使用多线程进行  embed_texts,效果不明显,瓶颈可能主要在提供 Embedding 的服务器上

* 修复glm3 agent被注释的agent会话文本结构解析代码
看起来输出的文本占位符如下,目前解析代码是有问题的
Thought <|assistant|> Action\r
```python
tool_call(action_input)
```<|observation|>

* make qwen agent work with langchain>=0.1 (#3228)

* make xinference model manager support xinference 0.9.x

* 使用多进程提高导入知识库的速度 (#3276)

* xinference的代码

先传 我后面来改

* Delete server/xinference directory

* Create khazic

* diiii

diii

* Revert "xinference的代码"

* fix markdown header split (#1825) (#3324)

* dify model_providers configuration
This module provides the interface for invoking and authenticating various models, and offers Dify a unified information and credentials form rule for model providers.

* fix merge conflict: langchain Embeddings not imported in server.utils

* 添加 react 编写的新版 WEBUI (#3417)

* feat:提交前端代码

* feat:提交logo样式切换

* feat:替换avatar、部分位置icon、chatchat相关说明、git链接、Wiki链接、关于、设置、反馈与建议等功能,关闭lobehub自检更新功能

* fix:移除多余代码

---------

Co-authored-by: liunux4odoo <41217877+liunux4odoo@users.noreply.github.com>

* model_providers bootstrap

* model_providers bootstrap

* update to pydantic v2 (#3486)

* 使用poetry管理项目

* 使用poetry管理项目

* dev分支解决pydantic版本冲突问题,增加ollama配置,支持ollama会话和向量接口 (#3508)

* dev分支解决pydantic版本冲突问题,增加ollama配置,支持ollama会话和向量接口
1、因dev版本的pydantic升级到了v2版本,由于在class History(BaseModel)中使用了from server.pydantic_v1,而fastapi的引用已变为pydantic的v2版本,所以fastapi用v2版本去校验用v1版本定义的对象,当会话历史histtory不为空的时候,会报错:TypeError: BaseModel.validate() takes 2 positional arguments but 3 were given。经测试,解方法为在class History(BaseModel)中也使用v2版本即可;
2、配置文件参照其它平台配置,增加了ollama平台相关配置,会话模型用户可根据实际情况自行添加,向量模型目前支持nomic-embed-text(必须升级ollama到0.1.29以上)。
3、因ollama官方只在会话部分对openai api做了兼容,向量api暂未适配,好在langchain官方库支持OllamaEmbeddings,因而在get_Embeddings方法中添加了相关支持代码。

* 修复 pydantic 升级到 v2 后 DocumentWithVsID 和 /v1/embeddings 兼容性问题

---------

Co-authored-by: srszzw <srszzw@163.com>
Co-authored-by: liunux4odoo <liunux@qq.com>

* 对python的要求降级到py38

* fix bugs; make poetry using tsinghua mirror of pypi

* update gitignore; remove unignored files

* update wiki sub module

* 20240326

* 20240326

* qqqq

* 删除历史文件

* 移动项目模块

* update .gitignore; fix model version error in api_schemas

* 封装ModelManager

* - 重写 tool 部分: (#3553)

- 简化 tool 的定义方式
    - 所有 tool 和 tool_config 支持热加载
    - 修复:json_schema_extra warning

* 使用yaml加载用户配置适配器

* 格式化代码

* 格式化

* 优化工具定义;添加 openai 兼容的统一 chat 接口 (#3570)

- 修复:
    - Qwen Agent 的 OutputParser 不再抛出异常,遇到非 COT 文本直接返回
    - CallbackHandler 正确处理工具调用信息

- 重写 tool 定义方式:
    - 添加 regist_tool 简化 tool 定义:
        - 可以指定一个用户友好的名称
        - 自动将函数的 __doc__ 作为 tool.description
	- 支持用 Field 定义参数,不再需要额外定义 ModelSchema
        - 添加 BaseToolOutput 封装 tool	返回结果,以便同时获取原始值、给LLM的字符串值
        - 支持工具热加载(有待测试)

- 增加 openai 兼容的统一 chat 接口,通过 tools/tool_choice/extra_body 不同参数组合支持:
    - Agent 对话
    - 指定工具调用(如知识库RAG)
    - LLM 对话

- 根据后端功能更新 webui

* 修复:search_local_knowledge_base 工具返回值错误;/tools 路由错误;webui 中“正在思考”一直显示 (#3571)

* 添加 openai 兼容的 files 接口 (#3573)

* 使用BootstrapWebBuilder适配RESTFulOpenAIBootstrapBaseWeb加载

* 格式化和代码检查说明

* 模型列表适配

* make format

* chat_completions接口报文适配

* make format

* xinference 插件示例

* 一些默认参数

* exec path fix

* 解决ollama部署的qwen,执行agent,返回的json格式不正确问题。

* provider_configuration.py
查询所有的平台信息,包含计费策略和配置schema_validators(参数必填信息校验规则)
/workspaces/current/model-providers
查询平台模型分类的详细默认信息,包含了模型类型,模型参数,模型状态
workspaces/current/models/model-types/{model_type}

* 开发手册

* 兼容model_providers,集成webui及API中平台配置的初始化 (#3625)

* provider_configuration init of MODEL_PLATFORMS

* 开发手册

* 兼容model_providers,集成webui及API中平台配置的初始化

* Dev model providers (#3628)


* gemini 初始化参数问题

* gemini 同步工具调用

* embedding convert endpoint

* 修复 --api -w命令

* /v1/models 接口返回值由 List[Model] 改为 {'data': List[Model]},兼容最新版 xinference

* 3.8兼容 (#3769)

* 增加使用说明

* 3.8兼容性配置

* fix

* formater

* 不同平台兼容测试用例

* embedding兼容

* 增加日志信息

* pip源仓库设置,一些版本问题,启动说明  配置说明 (#3854)

* 仓库设置,一些版本问题

* pip源仓库设置,一些版本问题,启动说明

* 配置说明

* 泛型标记错误 (#3855)

* 仓库设置,一些版本问题

* pip源仓库设置,一些版本问题,启动说明

* 配置说明

* 发布的依赖信息

* 泛型标记错误

* 泛型标记错误

* CICD github action build publish pypi、Release Tag (#3886)

* 测试用例

* CICD 流程

* CICD 流程

* CICD 流程

* 一些agent数据处理的问题,model_runtime模块的说明文档 (#3943)

* 一些agent数据出来的问题

* Changes:
- Translated and updated the Model Runtime documentation to reflect the latest changes and features.
- Clarified the decoupling benefits of the Model Runtime module from the Chatchat service.
- Removed outdated information regarding the model configuration storage module.
- Detailed the retained functionalities post-removal of the Dify configuration page.
- Provided a comprehensive overview of the Model Runtime's three-layered structure.
- Included the status of the `fetch-from-remote` feature and its non-implementation in Dify.
- Added instructions for custom service provider model capabilities.

* - 新功能 (#3944)

- streamlit 更新到 1.34,webui 支持 Dialog 操作
    - streamlit-chatbox 更新到 1.1.12,更好的多会话支持
- 开发者
    - 在 API 中增加项目图片路由(/img/{file_name}),方便前端使用

* 修改包名

* 修改包信息

* ollama配置解析问题

* 用户配置动态加载 (#3951)

* version = "0.3.0.20240506"

* version = "0.3.0.20240506"

* version = "0.3.0.20240506"

* version = "0.3.0.20240506"

* 启动说明

* 一些bug

* 修复了一些配置重载的bug

* 配置的加载行为修改

* 配置的加载行为修改

* agent代码优化

* ollama 代码升级,使用openai协议

* 支持deepseek客户端

* contributing (#4043)

* 添加了贡献说明 docs/contributing,包含了一些代码仓库说明和开发规范,以及在model_providers下面编写了一些单元测试的示例

* 关于providers的配置说明

* python3.8兼容

* python3.8兼容

* ollama兼容

* ollama兼容

* 一些兼容 pydantic<3,>=1.9.0  的代码,

* 一些兼容 pydantic<3,>=1.9.0 model_config 的代码,

* make format

* test

* 更新版本

* get_img_base64

* get_img_base64

* get_img_base64

* get_img_base64

* get_img_base64

* 统一模型类型编码

* 向量处理问题

* 优化目录结构 (#4058)

* 优化目录结构

* 修改一些测试问题

---------

Co-authored-by: glide-the <2533736852@qq.com>

* repositories

* 调整日志

* 调整日志zdf

* 增加可选依赖extras

* feat:Added some documentation. (#4085)

* feat:Added some documentation.

* feat:Added some documentation.

* feat:Added some documentation.

---------

Co-authored-by: yuehuazhang <yuehuazhang@tencent.com>

* fix code.md typos

* fix chatchat-server/pyproject.toml typos

* feat:README (#4118)

Co-authored-by: yuehuazhang <yuehuazhang@tencent.com>

* 初始化数据库集成model_providers

* 关闭守护进程

* 1、修改知识库列表接口,返回全量属性字段,同时修改受影响的相关代码。 (#4119)

2、run_in_process_pool改为run_in_thread_pool,解决兼容性问题。
3、poetry配置文件修复。

* 动态更新Prompt中的知识库描述信息,使大模型更容易判断使用哪个知识库。 (#4121)

* 1、修改知识库列表接口,返回全量属性字段,同时修改受影响的相关代码。
2、run_in_process_pool改为run_in_thread_pool,解决兼容性问题。
3、poetry配置文件修复。

* 1、动态更新Prompt中的知识库描述信息,使大模型更容易判断使用哪个知识库。

* fix: 补充 xinference 配置信息 (#4123)

* feat:README

* feat:补充 xinference 平台 llm 和 embedding 模型配置.

---------

Co-authored-by: yuehuazhang <yuehuazhang@tencent.com>

* 知识库工具的下拉列表改为动态获取,不必重启服务。 (#4126)

* 1、知识库工具的下拉列表改为动态获取,不必重启服务。

* update README and imgs

* update README and imgs

* update README and imgs

* update README and imgs

* 修改安装说明描述问题

* make formater

* 更新版本"0.3.0.20240606

* Update code.md

* 优化知识库相关功能 (#4153)

- 新功能
    - pypi 包新增 chatchat-kb 命令脚本,对应 init_database.py 功能

- 开发者
    - _model_config.py 中默认包含 xinference 配置项
    - 所有涉及向量库的操作,前置检查当前 Embed 模型是否可用
    - /knowledge_base/create_knowledge_base 接口增加 kb_info 参数
    - /knowledge_base/list_files 接口返回所有数据库字段,而非文件名称列表
    - 修正 xinference 模型管理脚本

* 消除警告

* 一些依赖问题

* 增加text2sql工具,支持特定表、智能判定表,支持对表名进行额外说明 (#4154)

* 1、增加text2sql工具,支持特定表、智能判定表,支持对表名进行额外说明

* 支持SQLAlchemy大部分数据库、新增read-only模式,提高安全性、增加text2sql使用建议 (#4155)

* 1、修改text2sql连接配置,支持SQLAlchemy大部分数据库;
2、新增read-only模式,若有数据库写保护需求,会从大模型判断、SQLAlchemy拦截器两个层面进行写拦截,提高安全性;
3、增加text2sql使用建议;

* dotenv

* dotenv 配置

* 用户工作空间操作 (#4156)

工作空间的配置预设,提供ConfigBasic建造方法产生实例。
  该类的实例对象用于存储工作空间的配置信息,如工作空间的路径等
  工作空间的配置信息存储在用户的家目录下的.config/chatchat/workspace/workspace_config.json文件中。
  注意:不存在则读取默认

提供了操作入口
指令` chatchat-config` 工作空间配置

options:
```
  -h, --help            show this help message and exit
  -v {true,false}, --verbose {true,false}
                        是否开启详细日志
  -d DATA, --data DATA  数据存放路径
  -f FORMAT, --format FORMAT
                        日志格式
  --clear               清除配置
```

* 配置路径问题

* fix faiss_cache bug

* Feature(File RAG): add file_rag in chatchat-server, add ensemble retriever and vectorstore retriever.

* Feature(File RAG): add file_rag in chatchat-server, add ensemble retriever and vectorstore retriever.

* fix xinference manager bug

* Fix(File RAG): use jieba instead of cutword

* Fix(File RAG): update kb_doc_api.py

* 工作空间的配置预设,提供ConfigBasic建造 实例。 (#4158)

- ConfigWorkSpace接口说明
```text

ConfigWorkSpace是一个配置工作空间的抽象类,提供基础的配置信息存储和读取功能。
提供ConfigFactory建造方法产生实例。
该类的实例对象用于存储工作空间的配置信息,如工作空间的路径等
工作空间的配置信息存储在用户的家目录下的.chatchat/workspace/workspace_config.json文件中。
注意:不存在则读取默认
```

* 编写配置说明

* 编写配置说明

---------

Co-authored-by: liunux4odoo <41217877+liunux4odoo@users.noreply.github.com>
Co-authored-by: glide-the <2533736852@qq.com>
Co-authored-by: tonysong <tonysong@digitalgd.com.cn>
Co-authored-by: songpb <songpb@gmail.com>
Co-authored-by: showmecodett <showmecodett@gmail.com>
Co-authored-by: zR <2448370773@qq.com>
Co-authored-by: zqt <1178747941@qq.com>
Co-authored-by: zqt996 <67185303+zqt996@users.noreply.github.com>
Co-authored-by: fengyaojie <fengyaojie@xdf.cn>
Co-authored-by: Hans WAN <hanswan@tom.com>
Co-authored-by: thinklover <thinklover@gmail.com>
Co-authored-by: liunux4odoo <liunux@qq.com>
Co-authored-by: xucailiang <74602715+xucailiang@users.noreply.github.com>
Co-authored-by: XuCai <liangxc@akulaku.com>
Co-authored-by: dignfei <913015993@qq.com>
Co-authored-by: Leb <khazzz1c@gmail.com>
Co-authored-by: Sumkor <sumkor@foxmail.com>
Co-authored-by: panhong <381500590@qq.com>
Co-authored-by: srszzw <741992282@qq.com>
Co-authored-by: srszzw <srszzw@163.com>
Co-authored-by: yuehua-s <41819795+yuehua-s@users.noreply.github.com>
Co-authored-by: yuehuazhang <yuehuazhang@tencent.com>
2024-06-10 22:48:35 +08:00

276 KiB
Raw Blame History

Changelog

Version 0.133.1

Released on 2024-03-08

🐛 Bug Fixes

  • misc: Fix sitemap config.

Improvements and Fixes

What's fixed

  • misc: Fix sitemap config (a2542a7)

Version 0.133.0

Released on 2024-03-07

Features

  • misc: Support Mistral model provider.

Improvements and Fixes

What's improved

  • misc: Support Mistral model provider, closes #1455 (4f94bfe)

Version 0.132.2

Released on 2024-03-07

🐛 Bug Fixes

  • misc: Fix anthropic streaming on Vercel/Cloudflare.

Improvements and Fixes

What's fixed

  • misc: Fix anthropic streaming on Vercel/Cloudflare, closes #1480 (227101a)

Version 0.132.1

Released on 2024-03-06

🐛 Bug Fixes

  • misc: Fix hydration error while OAuth callback.

Improvements and Fixes

What's fixed

  • misc: Fix hydration error while OAuth callback, closes #1474 (ff93825)

Version 0.132.0

Released on 2024-03-05

Features

  • misc: Support anthropic as model provider.

Improvements and Fixes

What's improved

  • misc: Support anthropic as model provider, closes #1409 (a42cf8c)

Version 0.131.0

Released on 2024-03-05

Features

  • misc: Support langfuse integration.

Improvements and Fixes

What's improved

  • misc: Support langfuse integration, closes #1325 (aaedfa7)

Version 0.130.7

Released on 2024-03-03

♻ Code Refactoring

  • misc: Update gpt-3.5-turbo model card.

Improvements and Fixes

Code refactoring

  • misc: Update gpt-3.5-turbo model card, closes #1449 (d0be0c7)

Version 0.130.6

Released on 2024-03-01

♻ Code Refactoring

  • misc: Refactor the plugin and tool slice.

Improvements and Fixes

Code refactoring

  • misc: Refactor the plugin and tool slice, closes #1437 (003e230)

Version 0.130.5

Released on 2024-03-01

💄 Styles

  • misc: Support switch model with tag.

Improvements and Fixes

Styles

  • misc: Support switch model with tag, closes #1435 (233150e)

Version 0.130.4

Released on 2024-02-29

♻ Code Refactoring

  • misc: Refactor the core chatStream and plugin gateway auth.

Improvements and Fixes

Code refactoring

  • misc: Refactor the core chatStream and plugin gateway auth, closes #1426 (7d3c1b6)

Version 0.130.3

Released on 2024-02-29

♻ Code Refactoring

  • misc: Refactor the google api route and add more tests for chat route.

Improvements and Fixes

Code refactoring

  • misc: Refactor the google api route and add more tests for chat route, closes #1424 (063a4d5)

Version 0.130.2

Released on 2024-02-29

🐛 Bug Fixes

  • misc: Update azure OpenAI api version options to latest.

Improvements and Fixes

What's fixed

  • misc: Update azure OpenAI api version options to latest, closes #1423 (d992262)

Version 0.130.1

Released on 2024-02-28

🐛 Bug Fixes

  • google: Add safetySettings to avoid error response with google AI model.

Improvements and Fixes

What's fixed

  • google: Add safetySettings to avoid error response with google AI model, closes #1418 (87bf1fb)

Version 0.130.0

Released on 2024-02-27

Features

  • misc: Support multiple API Keys.

Improvements and Fixes

What's improved

Version 0.129.6

Released on 2024-02-25

🐛 Bug Fixes

  • misc: Fix github url.

Improvements and Fixes

What's fixed

Version 0.129.5

Released on 2024-02-25

🐛 Bug Fixes

  • misc: Fix eliminate UI jitter on navigation, improving experience for users sensitive to motion.

Improvements and Fixes

What's fixed

  • misc: Fix eliminate UI jitter on navigation, improving experience for users sensitive to motion, closes #1381 (9231413)

Version 0.129.4

Released on 2024-02-24

🐛 Bug Fixes

  • ollama: Fix gemma model id.

Improvements and Fixes

What's fixed

Version 0.129.3

Released on 2024-02-23

💄 Styles

  • misc: Add gemma model logo for ollama.

Improvements and Fixes

Styles

  • misc: Add gemma model logo for ollama, closes #1369 (e2fb3a3)

Version 0.129.2

Released on 2024-02-23

🐛 Bug Fixes

  • misc: Fix OAuth don't get user id from session.

Improvements and Fixes

What's fixed

  • misc: Fix OAuth don't get user id from session, closes #1347 (ce4d6ca)

Version 0.129.1

Released on 2024-02-22


Improvements and Fixes

Version 0.129.0

Released on 2024-02-22

Features

  • misc: Support perplexity AI provider.

Improvements and Fixes

What's improved

  • misc: Support perplexity AI provider, closes #1339 (61c88fb)

Version 0.128.10

Released on 2024-02-21

🐛 Bug Fixes

  • misc: Fix the robots.txt config.

Improvements and Fixes

What's fixed

  • misc: Fix the robots.txt config (c4adfe4)

Version 0.128.9

Released on 2024-02-20

🐛 Bug Fixes

  • misc: Fix the robots.txt config.

Improvements and Fixes

What's fixed

  • misc: Fix the robots.txt config (34901b4)

Version 0.128.8

Released on 2024-02-20


Improvements and Fixes

Version 0.128.7

Released on 2024-02-20

💄 Styles

  • misc: Improve docs url and add more docs.

Improvements and Fixes

Styles

  • misc: Improve docs url and add more docs, closes #1329 (85b3136)

Version 0.128.6

Released on 2024-02-20

🐛 Bug Fixes

  • misc: Fix OAuth errors on Docker deployment.

Improvements and Fixes

What's fixed

  • misc: Fix OAuth errors on Docker deployment, closes #1323 (922e843)

Version 0.128.5

Released on 2024-02-18

🐛 Bug Fixes

  • misc: Fix the document url.

Improvements and Fixes

What's fixed

  • misc: Fix the document url (43b5677)

Version 0.128.4

Released on 2024-02-18

🐛 Bug Fixes

  • misc: Fix documents i18n.

Improvements and Fixes

What's fixed

Version 0.128.3

Released on 2024-02-18

♻ Code Refactoring

  • misc: Refactor with chat docs site.

Improvements and Fixes

Code refactoring

  • misc: Refactor with chat docs site, closes #1309 (c131fa6)

Version 0.128.2

Released on 2024-02-15

🐛 Bug Fixes

  • misc: Fix agent avatar click wrong navigation.

Improvements and Fixes

What's fixed

  • misc: Fix agent avatar click wrong navigation, closes #1308 (adc7bc1)

Version 0.128.1

Released on 2024-02-15

🐛 Bug Fixes

  • misc: Fix auto lang switch.

Improvements and Fixes

What's fixed

Version 0.128.0

Released on 2024-02-14

Features

  • misc: Support define default agent config with DEFAULT_AGENT_CONFIG ENV.

Improvements and Fixes

What's improved

  • misc: Support define default agent config with DEFAULT_AGENT_CONFIG ENV, closes #1291 (c7c096e)

Version 0.127.2

Released on 2024-02-14

♻ Code Refactoring

  • misc: Refactor the sidebar to fix first render state.

Improvements and Fixes

Code refactoring

  • misc: Refactor the sidebar to fix first render state, closes #1301 (c477491)

Version 0.127.1

Released on 2024-02-14

💄 Styles

  • misc: Improve settings tabs style and refactor the LLM setting page.

Improvements and Fixes

Styles

  • misc: Improve settings tabs style and refactor the LLM setting page, closes #1299 (31f6f15)

Version 0.127.0

Released on 2024-02-13

Features

  • llm: Support Ollama AI Provider for local LLM.

Improvements and Fixes

What's improved

  • llm: Support Ollama AI Provider for local LLM (3b6f249)

Version 0.126.5

Released on 2024-02-12

♻ Code Refactoring

  • misc: Refactor with the auth code.

🐛 Bug Fixes

  • misc: Fix middleware auth console error.

Improvements and Fixes

Code refactoring

  • misc: Refactor with the auth code (8cee01f)

What's fixed

  • misc: Fix middleware auth console error (ad3ade8)

Version 0.126.4

Released on 2024-02-11

♻ Code Refactoring

  • misc: Update Model provider request url.

🐛 Bug Fixes

  • misc: Fix auth error in console, fix token tag usage display.

Improvements and Fixes

Code refactoring

  • misc: Update Model provider request url (b64acc0)

What's fixed

  • misc: Fix auth error in console (8e7ee82)
  • misc: Fix token tag usage display (6e7134b)

Version 0.126.3

Released on 2024-02-09

🐛 Bug Fixes

  • misc: Fix auth layout error.

Improvements and Fixes

What's fixed

  • misc: Fix auth layout error (efd7d14)

Version 0.126.2

Released on 2024-02-09

🐛 Bug Fixes

  • misc: Fix OAuth throws an error on Vercel deploy.

Improvements and Fixes

What's fixed

Version 0.126.1

Released on 2024-02-09

🐛 Bug Fixes

  • misc: Add basePath to support subdirectory.

Improvements and Fixes

What's fixed

  • misc: Add basePath to support subdirectory, closes #1179 (43e544a)

Version 0.126.0

Released on 2024-02-09

Features

  • misc: Support umami analytics.

🐛 Bug Fixes

  • misc: The back button on the chat setting page can correctly return to the configured Agent chat page.

Improvements and Fixes

What's improved

What's fixed

  • misc: The back button on the chat setting page can correctly return to the configured Agent chat page, closes #1272 (4cc1ad5)

Version 0.125.0

Released on 2024-02-08

Features

  • misc: Support login & session authentication via OAuth 2.0 (Auth0).

Improvements and Fixes

What's improved

  • misc: Support login & session authentication via OAuth 2.0 (Auth0), closes #1143 (0609690)

Version 0.124.3

Released on 2024-02-07

🐛 Bug Fixes

  • misc: Fix use azure api key error.

💄 Styles

  • settings: Improve LLM connection checker style.

Improvements and Fixes

What's fixed

Styles

  • settings: Improve LLM connection checker style, closes #1252 (4905d9e)

Version 0.124.2

Released on 2024-02-06

💄 Styles

  • misc: Add moonshot i18n.

Improvements and Fixes

Styles

Version 0.124.1

Released on 2024-02-06

💄 Styles

  • misc: Improve direction UX.

Improvements and Fixes

Styles

Version 0.124.0

Released on 2024-02-06

Features

  • misc: Support Moonshot AI Provider.

Improvements and Fixes

What's improved

  • misc: Support Moonshot AI Provider, closes #1232 (a6de202)

Version 0.123.4

Released on 2024-02-06

💄 Styles

  • misc: Improve clear topic tips.

Improvements and Fixes

Styles

Version 0.123.3

Released on 2024-02-06

🐛 Bug Fixes

  • misc: Fix non-https crypto.subtile missing error.

Improvements and Fixes

What's fixed

  • misc: Fix non-https crypto.subtile missing error, closes #1238 (1750d0b)

Version 0.123.2

Released on 2024-02-06

🐛 Bug Fixes

  • misc: Fix docker build.

Improvements and Fixes

What's fixed

Version 0.123.1

Released on 2024-02-05

🐛 Bug Fixes

  • misc: Improve auth control of plugin gateways, update dockerfile.

💄 Styles

  • misc: Add gpt-4-all feature flag.

Improvements and Fixes

What's fixed

  • misc: Improve auth control of plugin gateways (6354ad8)
  • misc: Update dockerfile (e66aed3)

Styles

  • misc: Add gpt-4-all feature flag (360b36c)

Version 0.123.0

Released on 2024-02-05

Features

  • misc: Support Google / Zhipu / AWS Bedrock model providers.

Improvements and Fixes

What's improved

  • misc: Support Google / Zhipu / AWS Bedrock model providers, closes #1173 (d5929f6)

Version 0.122.9

Released on 2024-02-05

💄 Styles

  • settings: Improve LLM connection checker style.

Improvements and Fixes

Styles

  • settings: Improve LLM connection checker style, closes #1222 (8c349a1)

Version 0.122.8

Released on 2024-02-03

💄 Styles

  • misc: Allow user to add agent without redirection.

Improvements and Fixes

Styles

  • misc: Allow user to add agent without redirection, closes #1199 (6577ca1)

Version 0.122.7

Released on 2024-02-02

💄 Styles

  • misc: Update the gpt-4-1106-preview model to gpt-4-0125-preview.

Improvements and Fixes

Styles

  • misc: Update the gpt-4-1106-preview model to gpt-4-0125-preview, closes #1210 (fe623e1)

Version 0.122.6

Released on 2024-01-31

🐛 Bug Fixes

  • check: The state of connectivity can only be singular.

Improvements and Fixes

What's fixed

  • check: The state of connectivity can only be singular, closes #1201 (c412baf)

Version 0.122.5

Released on 2024-01-31

🐛 Bug Fixes

  • misc: The plugin has a hallucination and gets stuck.

Improvements and Fixes

What's fixed

  • misc: The plugin has a hallucination and gets stuck, closes #1191 (0189759)

Version 0.122.4

Released on 2024-01-30

🐛 Bug Fixes

  • misc: Fix plugin gateway auth.

Improvements and Fixes

What's fixed

Version 0.122.3

Released on 2024-01-30

♻ Code Refactoring

  • misc: Refactor the setting storage from localStorage to indexedDB.

Improvements and Fixes

Code refactoring

  • misc: Refactor the setting storage from localStorage to indexedDB, closes #1180 (615e796)

Version 0.122.2

Released on 2024-01-30

🐛 Bug Fixes

  • misc: Fix unexpected topic switch when favoriting topic.

Improvements and Fixes

What's fixed

  • misc: Fix unexpected topic switch when favoriting topic, closes #1186 (ab4de13)

Version 0.122.1

Released on 2024-01-29

💄 Styles

  • misc: Fix antd tab width flicker when show function debug.

Improvements and Fixes

Styles

  • misc: Fix antd tab width flicker when show function debug, closes #1171 (14e99d2)

Version 0.122.0

Released on 2024-01-29

Features

  • misc: Add create agent action in group menu.

Improvements and Fixes

What's improved

  • misc: Add create agent action in group menu, closes #1177 (17ec1eb)

Version 0.121.4

Released on 2024-01-29

🐛 Bug Fixes

  • misc: Pin ahooks to fix test ci and settings crash.

Improvements and Fixes

What's fixed

  • misc: Pin ahooks to fix test ci and settings crash, closes #1178 (bc223a4)

Version 0.121.3

Released on 2024-01-26

💄 Styles

  • misc: Improve stop loading icon.

Improvements and Fixes

Styles

Version 0.121.2

Released on 2024-01-25

💄 Styles

  • misc: Remove centered prop from CreateGroupModal.

Improvements and Fixes

Styles

  • misc: Remove centered prop from CreateGroupModal, closes #1146 (7b01676)

Version 0.121.1

Released on 2024-01-24

🐛 Bug Fixes

  • misc: Automatically fill in the wrong password.

💄 Styles

  • misc: Fix default plugins height unstabled when scrolling.

Improvements and Fixes

What's fixed

  • misc: Automatically fill in the wrong password, closes #1144 (0159a1a)

Styles

  • misc: Fix default plugins height unstabled when scrolling, closes #1142 (abed417)

Version 0.121.0

Released on 2024-01-24

Features

  • misc: Add session group manager.

Improvements and Fixes

What's improved

Version 0.120.6

Released on 2024-01-22

💄 Styles

  • misc: Fix share image tags not align.

Improvements and Fixes

Styles

  • misc: Fix share image tags not align, closes #1047 (28206b6)

Version 0.120.5

Released on 2024-01-21

💄 Styles

  • misc: Update locale and add test for globalStore.

Improvements and Fixes

Styles

  • misc: Update locale and add test for globalStore, closes #1119 (4545cf0)

Version 0.120.4

Released on 2024-01-21

🐛 Bug Fixes

  • misc: Refactor url state management and fix some detail experience.

Improvements and Fixes

What's fixed

  • misc: Refactor url state management and fix some detail experience, closes #1117 (a355d2c)

Version 0.120.3

Released on 2024-01-19

♻ Code Refactoring

  • misc: Refactor antd i18n and improve locale order.

Improvements and Fixes

Code refactoring

Version 0.120.2

Released on 2024-01-17

🐛 Bug Fixes

  • misc: Fix setPluginMessage can not stop create ai message.

Improvements and Fixes

What's fixed

  • misc: Fix setPluginMessage can not stop create ai message, closes #1078 (67de28d)

Version 0.120.1

Released on 2024-01-16

🐛 Bug Fixes

  • misc: Fix list scrolling white screen on mobile.

Improvements and Fixes

What's fixed

  • misc: Fix list scrolling white screen on mobile, closes #1072 (af10947)

Version 0.120.0

Released on 2024-01-15

Features

  • misc: Adding Arabic Language Support.

Improvements and Fixes

What's improved

  • misc: Adding Arabic Language Support, closes #1049 (a325ef9)

Version 0.119.13

Released on 2024-01-10

💄 Styles

  • misc: Add delete and regenerate for function message.

Improvements and Fixes

Styles

  • misc: Add delete and regenerate for function message, closes #992 (7f8c717)

Version 0.119.12

Released on 2024-01-09

🐛 Bug Fixes

  • misc: Fix new line after sending messages with enter key.

Improvements and Fixes

What's fixed

  • misc: Fix new line after sending messages with enter key, closes #990 (e6ab019)

Version 0.119.11

Released on 2024-01-09

♻ Code Refactoring

  • misc: Refactor ChatInput to support cmd+enter.

Improvements and Fixes

Code refactoring

  • misc: Refactor ChatInput to support cmd+enter, closes #983 (437a223)

Version 0.119.10

Released on 2024-01-08

🐛 Bug Fixes

  • misc: Debug information cannot be selected.

Improvements and Fixes

What's fixed

  • misc: Debug information cannot be selected, closes #980 (f02612d)

Version 0.119.9

Released on 2024-01-08

💄 Styles

  • misc: Fix ChatInput fullscreen display not correct.

Improvements and Fixes

Styles

  • misc: Fix ChatInput fullscreen display not correct, closes #982 (e4012c4)

Version 0.119.8

Released on 2024-01-07

🐛 Bug Fixes

  • misc: Fix spotting tool call correctly.

Improvements and Fixes

What's fixed

  • misc: Fix spotting tool call correctly, closes #972 (216e700)

Version 0.119.7

Released on 2024-01-07

💄 Styles

  • misc: Improve share modal style.

Improvements and Fixes

Styles

  • misc: Improve share modal style, closes #965 (62c0573)

Version 0.119.6

Released on 2024-01-06

💄 Styles

  • misc: Improve conversation style.

Improvements and Fixes

Styles

  • misc: Improve conversation style, closes #962 (b9cc862)

Version 0.119.5

Released on 2024-01-06

💄 Styles

  • misc: Fix topic i18n.

Improvements and Fixes

Styles

Version 0.119.4

Released on 2024-01-06

♻ Code Refactoring

  • misc: Refactor to virtual list with react-virtuoso.

🐛 Bug Fixes

  • misc: Fix auto scroll error and BackBottom error.

💄 Styles

  • misc: Fix BackBottom zIndex, improve chat list on mobile, improve chat list scrolling to bottom at initial render, improve custom model input, improve topic scroll.

Improvements and Fixes

Code refactoring

  • misc: Refactor to virtual list with react-virtuoso (d6d63b2)

What's fixed

  • misc: Fix auto scroll error and BackBottom error (6100970)

Styles

  • misc: Fix BackBottom zIndex (254cc54)
  • misc: Improve chat list on mobile (a894fc5)
  • misc: Improve chat list scrolling to bottom at initial render (476304b)
  • misc: Improve custom model input (1c4722f)
  • misc: Improve topic scroll (8daf3ac)

Version 0.119.3

Released on 2024-01-06

🐛 Bug Fixes

  • misc: Fix deploy error. Changed SquareAsterisk to AsteriskSquare.

Improvements and Fixes

What's fixed

  • misc: Fix deploy error. Changed SquareAsterisk to AsteriskSquare, closes #952 (61cbcf1)

Version 0.119.2

Released on 2024-01-05

🐛 Bug Fixes

  • misc: Fix function call error with smooth animation.

Improvements and Fixes

What's fixed

  • misc: Fix function call error with smooth animation, closes #946 (7242aee)

Version 0.119.1

Released on 2024-01-05


Improvements and Fixes

Version 0.119.0

Released on 2024-01-04

♻ Code Refactoring

  • misc: Refactor the ChatList.

Features

  • misc: Support auto rename topic, support delete and regenerate message, support duplicate session, support duplicate topic.

🐛 Bug Fixes

  • misc: Fix can't uninstall custom plugin in custom plugin modal.

Improvements and Fixes

Code refactoring

  • misc: Refactor the ChatList (20f21de)

What's improved

  • misc: Support auto rename topic (4c5a345)
  • misc: Support delete and regenerate message (a05be1c)
  • misc: Support duplicate session (7a1e011)
  • misc: Support duplicate topic (ecf3e5a)

What's fixed

  • misc: Fix can't uninstall custom plugin in custom plugin modal (acae827)

Version 0.118.10

Released on 2024-01-03

🐛 Bug Fixes

  • misc: Add chat defaultNS.

Improvements and Fixes

What's fixed

Version 0.118.9

Released on 2024-01-03

💄 Styles

  • misc: Add leaving protect alert.

Improvements and Fixes

Styles

  • misc: Add leaving protect alert, closes #927 (ea1d0c0)

Version 0.118.8

Released on 2024-01-03

💄 Styles

  • misc: Add Vietnamese files and add the vi-VN option in the General Settings.

Improvements and Fixes

Styles

  • misc: Add Vietnamese files and add the vi-VN option in the General Settings, closes #860 (c2e5606)

Version 0.118.7

Released on 2024-01-03

🐛 Bug Fixes

  • misc: Desensitize openai base url in the error response.

Improvements and Fixes

What's fixed

  • misc: Desensitize openai base url in the error response, closes #918 (ab0aeb7)

Version 0.118.6

Released on 2024-01-03

♻ Code Refactoring

  • misc: Migration the ChatList into Conversation.

Improvements and Fixes

Code refactoring

  • misc: Migration the ChatList into Conversation, closes #916 (6ee3795)

Version 0.118.5

Released on 2024-01-02

🐛 Bug Fixes

  • misc: Mobile device return to the previous page error.

Improvements and Fixes

What's fixed

  • misc: Mobile device return to the previous page error, closes #886 (99cfc0f)

Version 0.118.4

Released on 2024-01-02

🐛 Bug Fixes

  • misc: Update dalle identifier to fix unstable dalle function call.

Improvements and Fixes

What's fixed

  • misc: Update dalle identifier to fix unstable dalle function call, closes #896 (9d9ac32)

Version 0.118.3

Released on 2024-01-01

🐛 Bug Fixes

  • misc: Fix parse error of tool calls at end.

Improvements and Fixes

What's fixed

  • misc: Fix parse error of tool calls at end, closes #893 (f369b6e)

Version 0.118.2

Released on 2023-12-31

🐛 Bug Fixes

  • misc: Pin antd version to fix chat page crash.

Improvements and Fixes

What's fixed

  • misc: Pin antd version to fix chat page crash, closes #884 (31484ff)

Version 0.118.1

Released on 2023-12-30

🐛 Bug Fixes

  • misc: Fix dalle image download error.

Improvements and Fixes

What's fixed

  • misc: Fix dalle image download error, closes #868 (5b6d11f)

Version 0.118.0

Released on 2023-12-29

Features

  • misc: Support markdown type plugin.

Improvements and Fixes

What's improved

  • misc: Support markdown type plugin, closes #865 (2791166)

Version 0.117.5

Released on 2023-12-29

🐛 Bug Fixes

  • misc: The input box is prone to losing focus.

Improvements and Fixes

What's fixed

  • misc: The input box is prone to losing focus, closes #834 (26a42f6)

Version 0.117.4

Released on 2023-12-28

🐛 Bug Fixes

  • misc: Fix messages not refresh when creating a new topic.

Improvements and Fixes

What's fixed

  • misc: Fix messages not refresh when creating a new topic, closes #856 (5e7985a)

Version 0.117.3

Released on 2023-12-28

🐛 Bug Fixes

  • misc: Fix tool calls at end, fix vision model max tokens, improve vision model checker.

Improvements and Fixes

What's fixed

  • misc: Fix tool calls at end (b0b615a)
  • misc: Fix vision model max tokens (8b704a0)
  • misc: Improve vision model checker (da7d177)

Version 0.117.2

Released on 2023-12-28

🐛 Bug Fixes

  • misc: Fix market locale missing.

Improvements and Fixes

What's fixed

  • misc: Fix market locale missing, closes #851 (e23ec66)

Version 0.117.1

Released on 2023-12-27

💄 Styles

  • misc: Add image download functionality to DALL·E render component.

Improvements and Fixes

Styles

  • misc: Add image download functionality to DALL·E render component, closes #778 (31b8047)

Version 0.117.0

Released on 2023-12-27

Features

  • misc: Support plugin settings env.

🐛 Bug Fixes

  • misc: Improve topic search experience.

Improvements and Fixes

What's improved

  • misc: Support plugin settings env, closes #821 (efd9dc9)

What's fixed

  • misc: Improve topic search experience, closes #828 (ad55f1c)

Version 0.116.5

Released on 2023-12-27

🐛 Bug Fixes

  • misc: Fix input box losing focus after sending a message on the desktop.

Improvements and Fixes

What's fixed

  • misc: Fix input box losing focus after sending a message on the desktop, closes #830 (d491af9)

Version 0.116.4

Released on 2023-12-26

🐛 Bug Fixes

  • misc: Fix ShareModal.

Improvements and Fixes

What's fixed

Version 0.116.3

Released on 2023-12-26

💄 Styles

  • misc: Fix typo.

Improvements and Fixes

Styles

Version 0.116.2

Released on 2023-12-26

💄 Styles

  • misc: Update Modal style.

Improvements and Fixes

Styles

  • misc: Update Modal style (ac7d309)

Version 0.116.1

Released on 2023-12-26

💄 Styles

  • misc: Support slider and select plugin setting render.

Improvements and Fixes

Styles

  • misc: Support slider and select plugin setting render, closes #819 (3190b44)

Version 0.116.0

Released on 2023-12-26

Features

  • misc: Support OpenAI tool calls.

Improvements and Fixes

What's improved

  • misc: Support OpenAI tool calls (9681fdc)

Version 0.115.13

Released on 2023-12-26

🐛 Bug Fixes

  • misc: Fix remove tts and translate not working.

Improvements and Fixes

What's fixed

  • misc: Fix remove tts and translate not working, closes #818 (4a275e9)

Version 0.115.12

Released on 2023-12-25

🐛 Bug Fixes

  • misc: Fix active setting tab after click agent setting button.

Improvements and Fixes

What's fixed

  • misc: Fix active setting tab after click agent setting button (c480fa9)

Version 0.115.11

Released on 2023-12-25

🐛 Bug Fixes

  • misc: Fix agent system role modal scrolling when content is too long.

Improvements and Fixes

What's fixed

  • misc: Fix agent system role modal scrolling when content is too long, closes #801 (f482a80)

Version 0.115.10

Released on 2023-12-25

💄 Styles

  • misc: Fix some style problem.

Improvements and Fixes

Styles

  • misc: Fix some style problem (447c006)

Version 0.115.9

Released on 2023-12-24

🐛 Bug Fixes

  • misc: Fix PLUGINS_INDEX_URL not working, fix a translation error in Traditional Chinese.

Improvements and Fixes

What's fixed

  • misc: Fix PLUGINS_INDEX_URL not working, closes #793 (152913e)
  • misc: Fix a translation error in Traditional Chinese, closes #789 (80c02ee)

Version 0.115.8

Released on 2023-12-24

🐛 Bug Fixes

  • misc: Fix CUSTOM_MODEL - operator not working.

Improvements and Fixes

What's fixed

  • misc: Fix CUSTOM_MODEL - operator not working, closes #791 (26b968f)

Version 0.115.7

Released on 2023-12-23

🐛 Bug Fixes

  • misc: Fix auto scrolling when generating message.

Improvements and Fixes

What's fixed

  • misc: Fix auto scrolling when generating message, closes #785 (1a236e6)

Version 0.115.6

Released on 2023-12-23

🐛 Bug Fixes

  • misc: Fix maxTokens params still work when disable enableMaxTokens.

Improvements and Fixes

What's fixed

  • misc: Fix maxTokens params still work when disable enableMaxTokens, closes #779 (20956ea)

Version 0.115.5

Released on 2023-12-23

🐛 Bug Fixes

  • misc: Fix image display error.

Improvements and Fixes

What's fixed

Version 0.115.4

Released on 2023-12-23

♻ Code Refactoring

  • misc: Refactor the ChatMessage type.

Improvements and Fixes

Code refactoring

  • misc: Refactor the ChatMessage type (40375bd)

Version 0.115.3

Released on 2023-12-23

♻ Code Refactoring

  • misc: Refactor and clean global store and chat store.

Improvements and Fixes

Code refactoring

  • misc: Refactor and clean global store and chat store, closes #774 (6120042)

Version 0.115.2

Released on 2023-12-23

🐛 Bug Fixes

  • misc: Fix envs like CUSTOM_MODELS don't work with docker deployment.

Improvements and Fixes

What's fixed

  • misc: Fix envs like CUSTOM_MODELS don't work with docker deployment, closes #773 (54dc18b)

Version 0.115.1

Released on 2023-12-22

💄 Styles

  • misc: Lock ui version to fix setting form style.

Improvements and Fixes

Styles

  • misc: Lock ui version to fix setting form style (6cdf548)

Version 0.115.0

Released on 2023-12-22

Features

  • misc: Support Dall·E 3.

Improvements and Fixes

What's improved

Version 0.114.9

Released on 2023-12-22

💄 Styles

  • misc: Support it-IT nl-NL and pl-PL locales.

Improvements and Fixes

Styles

  • misc: Support it-IT nl-NL and pl-PL locales, closes #759 (e49817c)

Version 0.114.8

Released on 2023-12-22


Improvements and Fixes

Version 0.114.7

Released on 2023-12-22

♻ Code Refactoring

  • misc: Move the conversation and chatInput to features folder.

Improvements and Fixes

Code refactoring

  • misc: Move the conversation and chatInput to features folder, closes #750 (0334592)

Version 0.114.6

Released on 2023-12-22


Improvements and Fixes

Version 0.114.5

Released on 2023-12-19

💄 Styles

  • misc: Fix plugin iframe width.

Improvements and Fixes

Styles

Version 0.114.4

Released on 2023-12-19

🐛 Bug Fixes

  • misc: Fix agent system role modal scrolling when content is too long.

Improvements and Fixes

What's fixed

  • misc: Fix agent system role modal scrolling when content is too long, closes #716 (c3e36d1)

Version 0.114.3

Released on 2023-12-18


Improvements and Fixes

Version 0.114.2

Released on 2023-12-17

🐛 Bug Fixes

  • misc: Fix chat error when message has image with non-vision model.

Improvements and Fixes

What's fixed

  • misc: Fix chat error when message has image with non-vision model, closes #698 #693 (b142c17)

Version 0.114.1

Released on 2023-12-16

🐛 Bug Fixes

  • misc: Inject tool description into agent system role.

Improvements and Fixes

What's fixed

  • misc: Inject tool description into agent system role, closes #681 (e7a8cff)

Version 0.114.0

Released on 2023-12-16

Features

  • misc: Supports setting multiple access code.

Improvements and Fixes

What's improved

  • misc: Supports setting multiple access code, closes #647 (7db0430)

Version 0.113.1

Released on 2023-12-16

🐛 Bug Fixes

  • misc: Fix fontsize setting and audio download style.

Improvements and Fixes

What's fixed

  • misc: Fix fontsize setting and audio download style, closes #433 (6882752)

Version 0.113.0

Released on 2023-12-16

Features

  • locale: Add es-ES pt-BR de-DE tr-TR.

Improvements and Fixes

What's improved

  • locale: Add es-ES pt-BR de-DE tr-TR, closes #659 (021abfa)

Version 0.112.1

Released on 2023-12-16

🐛 Bug Fixes

  • misc: Fix locales.

Improvements and Fixes

What's fixed

Version 0.112.0

Released on 2023-12-16

♻ Code Refactoring

  • misc: Refactor global and share service, refactor plugin dev modal and improve plugin store, refactor with OpenAPIConvertor.

Features

  • misc: Introduce plugin detail modal, support OpenAI plugin manifest, support OpenAPI Authentication, support OpenAPI schema in lobe plugin, support parse openapi schema.

🐛 Bug Fixes

  • misc: Fix function apiName length, try with node mode plugins.

💄 Styles

  • misc: Fix function message style, fix mobile padding of plugin dev modal, improve settings display, Update tool style.

Improvements and Fixes

Code refactoring

  • misc: Refactor global and share service (dd6f00e)
  • misc: Refactor plugin dev modal and improve plugin store (4dc5e35)
  • misc: Refactor with OpenAPIConvertor (605b3bf)

What's improved

  • misc: Introduce plugin detail modal (0308783)
  • misc: Support OpenAI plugin manifest (04ff2d5)
  • misc: Support OpenAPI Authentication (820c15e)
  • misc: Support OpenAPI schema in lobe plugin, closes #614 (5426a54)
  • misc: Support parse openapi schema (11a39b1)

What's fixed

  • misc: Fix function apiName length (b6f8c16)
  • misc: Try with node mode plugins (6bb547f)

Styles

  • misc: Fix function message style (4fee0b1)
  • misc: Fix mobile padding of plugin dev modal (7f7070a)
  • misc: Improve settings display (df57cde)
  • misc: Update tool style (292a3e1)

Version 0.111.6

Released on 2023-12-15

🐛 Bug Fixes

  • misc: Fix deployment build failure.

Improvements and Fixes

What's fixed

  • misc: Fix deployment build failure, closes #672 (3878dcd)

Version 0.111.5

Released on 2023-12-14

🐛 Bug Fixes

  • misc: Wrong locale language in en_US.

Improvements and Fixes

What's fixed

  • misc: Wrong locale language in en_US, closes #660 (e1c31ee)

Version 0.111.4

Released on 2023-12-14

🐛 Bug Fixes

  • misc: Revert "🐛 fix: clean up gpt-3.5 model".

Improvements and Fixes

What's fixed

  • misc: Revert "🐛 fix: clean up gpt-3.5 model", closes #653 (b8b14fc)

Version 0.111.3

Released on 2023-12-14

🐛 Bug Fixes

  • misc: Fix the history-count text.

Improvements and Fixes

What's fixed

  • misc: Fix the history-count text, closes #615 (4db1cef)

Version 0.111.2

Released on 2023-12-13

🐛 Bug Fixes

  • misc: Change topic-deletion hotkey.

💄 Styles

  • misc: Fix image display in safari (fix.

Improvements and Fixes

What's fixed

  • misc: Change topic-deletion hotkey, closes #616 (912ff45)

Styles

  • misc: Fix image display in safari (fix, closes #571 (4beefa7)

Version 0.111.1

Released on 2023-12-13

🐛 Bug Fixes

  • misc: Fix locale typo.

Improvements and Fixes

What's fixed

Version 0.111.0

Released on 2023-12-13

Features

  • locale: Add fr-FR.

Improvements and Fixes

What's improved

Version 0.110.10

Released on 2023-12-13

🐛 Bug Fixes

  • misc: Add cancel button text i18n for delete assistant modal.

Improvements and Fixes

What's fixed

  • misc: Add cancel button text i18n for delete assistant modal, closes #640 (fae04c9)

Version 0.110.9

Released on 2023-12-13

🐛 Bug Fixes

  • misc: ChatInput should have maxHeight.

Improvements and Fixes

What's fixed

  • misc: ChatInput should have maxHeight, closes #630 (8dfe1b8)

Version 0.110.8

Released on 2023-12-12

🐛 Bug Fixes

  • misc: Clean up gpt-3.5 model.

Improvements and Fixes

What's fixed

Version 0.110.7

Released on 2023-12-11

🐛 Bug Fixes

  • misc: Fix language settings may not take effect.

Improvements and Fixes

What's fixed

  • misc: Fix language settings may not take effect, closes #595 (a5db64e)

Version 0.110.6

Released on 2023-12-11

🐛 Bug Fixes

  • misc: Sharp missing in docker production.

Improvements and Fixes

What's fixed

  • misc: Sharp missing in docker production, closes #603 (d89b48d)

Version 0.110.5

Released on 2023-12-10

🐛 Bug Fixes

  • misc: Fix setting plugin i18n.

Improvements and Fixes

What's fixed

Version 0.110.4

Released on 2023-12-08


Improvements and Fixes

Version 0.110.3

Released on 2023-12-08

♻ Code Refactoring

  • misc: Refactor with new plugin implement with dexie db.

Improvements and Fixes

Code refactoring

  • misc: Refactor with new plugin implement with dexie db, closes #596 (f3b5e7b)

Version 0.110.2

Released on 2023-12-08

💄 Styles

  • misc: Fix ChatInputArea style and typo (resolve.

Improvements and Fixes

Styles

  • misc: Fix ChatInputArea style and typo (resolve, closes #599 (0d08f3b)

Version 0.110.1

Released on 2023-12-08

🐛 Bug Fixes

  • misc: Sharp missing in production.

Improvements and Fixes

What's fixed

  • misc: Sharp missing in production, closes #598 (c8ef782)

Version 0.110.0

Released on 2023-12-07

Features

  • misc: Local TTS Player.

Improvements and Fixes

What's improved

Version 0.109.1

Released on 2023-12-07

🐛 Bug Fixes

  • misc: Fix agent settings crash with old pluginManifest.

Improvements and Fixes

What's fixed

  • misc: Fix agent settings crash with old pluginManifest (8b80dfd)

Version 0.109.0

Released on 2023-12-06

Features

  • misc: Introducing plugin store and refactor with tool concept.

Improvements and Fixes

What's improved

  • misc: Introducing plugin store and refactor with tool concept, closes #573 (92f43d1)

Version 0.108.0

Released on 2023-12-03

Features

  • misc: Hide the password form item in the settings when there is no ACCESS_CODE env.

Improvements and Fixes

What's improved

  • misc: Hide the password form item in the settings when there is no ACCESS_CODE env, closes #568 (3b5f8b2)

Version 0.107.16

Released on 2023-12-03

🐛 Bug Fixes

  • misc: Fix custom agent meta issue.

Improvements and Fixes

What's fixed

  • misc: Fix custom agent meta issue, closes #567 (75560e1)

Version 0.107.15

Released on 2023-12-03

🐛 Bug Fixes

  • misc: Fix messages flickering when creating topic.

Improvements and Fixes

What's fixed

  • misc: Fix messages flickering when creating topic, closes #565 (7127550)

Version 0.107.14

Released on 2023-12-03

🐛 Bug Fixes

  • misc: Fix opt+delete fail in inputing (resolve.

Improvements and Fixes

What's fixed

  • misc: Fix opt+delete fail in inputing (resolve, closes #556 (4d5d93d)

Version 0.107.13

Released on 2023-12-03

♻ Code Refactoring

  • misc: Refactor Image components.

🐛 Bug Fixes

  • misc: Fix a bug that can't send only images with empty content, Fix image gallery sort index, Fix image gallery sort index, Fix image sort index, Fix image upload error, Fix import.

💄 Styles

  • misc: Change image fit to cover mode, Fix empty files style, Move file inside chat input in mobile mode, Update editable image style, Update image default background color, Update image editable style, Update image grid, Update Image grid, Update image remove button hover style.

Improvements and Fixes

Code refactoring

  • misc: Refactor Image components (72dcd18)

What's fixed

  • misc: Fix a bug that can't send only images with empty content (9601520)
  • misc: Fix image gallery sort index (16548d3)
  • misc: Fix image gallery sort index (5636599)
  • misc: Fix image sort index (29cf223)
  • misc: Fix image upload error (c7745c7)
  • misc: Fix import (af797d6)

Styles

  • misc: Change image fit to cover mode (9fdc459)
  • misc: Fix empty files style (bbe14c4)
  • misc: Move file inside chat input in mobile mode (b6401c1)
  • misc: Update editable image style (a96ca4c)
  • misc: Update image default background color (fadc024)
  • misc: Update image editable style (8dea792)
  • misc: Update image grid (901d10c)
  • misc: Update Image grid (c68788d)
  • misc: Update image remove button hover style (5bc916c)

Version 0.107.12

Released on 2023-12-02

🐛 Bug Fixes

  • misc: Fix topic not refresh when switching sessions quickly.

Improvements and Fixes

What's fixed

  • misc: Fix topic not refresh when switching sessions quickly, closes #555 (1806c05)

Version 0.107.11

Released on 2023-12-01

🐛 Bug Fixes

  • misc: Fix switch model don't work on mobile.

Improvements and Fixes

What's fixed

  • misc: Fix switch model don't work on mobile, closes #541 (609f505)

Version 0.107.10

Released on 2023-11-30


Improvements and Fixes

Version 0.107.9

Released on 2023-11-30

🐛 Bug Fixes

  • misc: Switch session causing problem.

Improvements and Fixes

What's fixed

  • misc: Switch session causing problem, closes #535 (205bc42)

Version 0.107.8

Released on 2023-11-30

💄 Styles

  • misc: Fix chatitem gap.

Improvements and Fixes

Styles

Version 0.107.7

Released on 2023-11-30

🐛 Bug Fixes

  • misc: Improve plugin message display.

Improvements and Fixes

What's fixed

  • misc: Improve plugin message display (208200a)

Version 0.107.6

Released on 2023-11-30

🐛 Bug Fixes

  • misc: 修正调用插件查询的显示问题.

Improvements and Fixes

What's fixed

  • misc: 修正调用插件查询的显示问题 (671ccef)

Version 0.107.5

Released on 2023-11-30

🐛 Bug Fixes

  • misc: 修正调用插件查询的显示问题.

Improvements and Fixes

What's fixed

  • misc: 修正调用插件查询的显示问题 (1457fe8)

Version 0.107.4

Released on 2023-11-30

🐛 Bug Fixes

  • misc: Fix a bug that remove all topics when clear message.

Improvements and Fixes

What's fixed

  • misc: Fix a bug that remove all topics when clear message (1ab912d)

Version 0.107.3

Released on 2023-11-30

🐛 Bug Fixes

  • misc: Fix a bug that trigger plugin's message type error.

Improvements and Fixes

What's fixed

  • misc: Fix a bug that trigger plugin's message type error (b9c7849)

Version 0.107.2

Released on 2023-11-30

🐛 Bug Fixes

  • misc: Fix a bug that export a session without messages.

Improvements and Fixes

What's fixed

  • misc: Fix a bug that export a session without messages (8e84f35)

Version 0.107.1

Released on 2023-11-30

💄 Styles

  • misc: 优化文案.

Improvements and Fixes

Styles

Version 0.107.0

Released on 2023-11-30

Features

  • misc: Refactor the persist layer from zustand's persist to dexie ORM.

Improvements and Fixes

What's improved

  • misc: Refactor the persist layer from zustand's persist to dexie ORM, closes #500 (9ae3a8e)

Version 0.106.0

Released on 2023-11-29

Features

  • misc: Support custom deletion, addition, and renaming of models.

Improvements and Fixes

What's improved

  • misc: Support custom deletion, addition, and renaming of models, closes #521 #518 #518 (65e0824)

Version 0.105.2

Released on 2023-11-27

🐛 Bug Fixes

  • misc: Add some env to Dockerfile.

Improvements and Fixes

What's fixed

  • misc: Add some env to Dockerfile, closes #514 (ed148db)

Version 0.105.1

Released on 2023-11-27

🐛 Bug Fixes

  • misc: Fix agent market detail scroll error.

Improvements and Fixes

What's fixed

  • misc: Fix agent market detail scroll error, closes #503 (8900ad0)

Version 0.105.0

Released on 2023-11-22

Features

  • misc: Standalone pluginn can get more arguments on init.

Improvements and Fixes

What's improved

  • misc: Standalone pluginn can get more arguments on init, closes #498 (a7624f5)

Version 0.104.0

Released on 2023-11-21

Features

  • misc: Support using env variable to set regions for OpenAI Edge Functions..

Improvements and Fixes

What's improved

  • misc: Support using env variable to set regions for OpenAI Edge Functions., closes #473 (de6b79e)

Version 0.103.1

Released on 2023-11-21

🐛 Bug Fixes

  • misc: Image optimization in docker standalone build.

Improvements and Fixes

What's fixed

  • misc: Image optimization in docker standalone build, closes #494 (d2bcac3)

Version 0.103.0

Released on 2023-11-20

Features

  • misc: Support the auto create topic configuration.

Improvements and Fixes

What's improved

  • misc: Support the auto create topic configuration, closes #490 (a7b7ef0)

Version 0.102.4

Released on 2023-11-20

🐛 Bug Fixes

  • plugin: Fix plugin can't get settings from lobe-chat.

Improvements and Fixes

What's fixed

  • plugin: Fix plugin can't get settings from lobe-chat, closes #488 (1555140)

Version 0.102.3

Released on 2023-11-20

🐛 Bug Fixes

  • misc: Fix plugin not work correct when adding agent from market.

Improvements and Fixes

What's fixed

  • misc: Fix plugin not work correct when adding agent from market, closes #394 (7c99816)

Version 0.102.2

Released on 2023-11-20

🐛 Bug Fixes

  • misc: Fix model tag missing.

Improvements and Fixes

What's fixed

Version 0.102.1

Released on 2023-11-19

🐛 Bug Fixes

  • misc: Fix image upload list missing.

Improvements and Fixes

What's fixed

  • misc: Fix image upload list missing (6bbac34)

Version 0.102.0

Released on 2023-11-19

Features

  • misc: Support TTS & STT.

Improvements and Fixes

What's improved

Version 0.101.7

Released on 2023-11-18

🐛 Bug Fixes

  • misc: Agent details sidebar and market page height overflow.

Improvements and Fixes

What's fixed

  • misc: Agent details sidebar and market page height overflow (71a54cc)

Version 0.101.6

Released on 2023-11-17

💄 Styles

  • misc: Add config to renderErrorMessages, Use new Alert ui.

Improvements and Fixes

Styles

  • misc: Add config to renderErrorMessages (75b6b40)
  • misc: Use new Alert ui (cf845a7)

Version 0.101.5

Released on 2023-11-17

🐛 Bug Fixes

  • misc: Improve openai error info.

Improvements and Fixes

What's fixed

  • misc: Improve openai error info, closes #469 (5523b64)

Version 0.101.4

Released on 2023-11-14

🐛 Bug Fixes

  • misc: Fix the plugin array merge error when fork agent from market.

Improvements and Fixes

What's fixed

  • misc: Fix the plugin array merge error when fork agent from market, closes #459 (fc29b33)

Version 0.101.3

Released on 2023-11-14

💄 Styles

  • misc: Improve password ui to make it more clear.

Improvements and Fixes

Styles

  • misc: Improve password ui to make it more clear, closes #458 (e3d2a8e)

Version 0.101.2

Released on 2023-11-14

💄 Styles

  • misc: upload image to vision model adapting to mobile device.

Improvements and Fixes

Styles

  • misc: upload image to vision model adapting to mobile device, closes #457 (9c4f4ee)

Version 0.101.1

Released on 2023-11-14

🐛 Bug Fixes

  • misc: Fix market search (fix.

Improvements and Fixes

What's fixed

Version 0.101.0

Released on 2023-11-14

Features

  • misc: Support upload images to chat with gpt4-vision model.

Improvements and Fixes

What's improved

  • misc: Support upload images to chat with gpt4-vision model, closes #440 (858d047)

Version 0.100.5

Released on 2023-11-11

♻ Code Refactoring

  • misc: Refactor the input area to suit the files upload feature.

Improvements and Fixes

Code refactoring

  • misc: Refactor the input area to suit the files upload feature, closes #442 (57a61fd)

Version 0.100.4

Released on 2023-11-11

🐛 Bug Fixes

  • misc: Hotkey disabled in form tags.

Improvements and Fixes

What's fixed

  • misc: Hotkey disabled in form tags (165888f)

Version 0.100.3

Released on 2023-11-09

🐛 Bug Fixes

  • misc: Fix market error.

Improvements and Fixes

What's fixed

Version 0.100.2

Released on 2023-11-09

🐛 Bug Fixes

  • misc: Upgrade viewport for nextjs 14.

Improvements and Fixes

What's fixed

  • misc: Upgrade viewport for nextjs 14, closes #436 (57d3d07)

Version 0.100.1

Released on 2023-11-09


Improvements and Fixes

Version 0.100.0

Released on 2023-11-09

Features

  • hotkeys: Compatible with SSR, display platform specific key.
  • misc: Platform check utils.

Improvements and Fixes

What's improved

  • hotkeys: Compatible with SSR (99fa4f8)
  • hotkeys: Display platform specific key (ee332a4)
  • misc: Platform check utils (08a3cb9)

Version 0.99.1

Released on 2023-11-08

💄 Styles

  • misc: Add max height to model menu in chat input area.

Improvements and Fixes

Styles

  • misc: Add max height to model menu in chat input area, closes #430 (c9a86f3)

Version 0.99.0

Released on 2023-11-08

Features

  • misc: Add Environment Variable for custom model name when deploying.

Improvements and Fixes

What's improved

  • misc: Add Environment Variable for custom model name when deploying, closes #429 (15f9fa2)

Version 0.98.3

Released on 2023-11-07

🐛 Bug Fixes

  • misc: Fix redirect to welcome problem when there are topics in inbox.

Improvements and Fixes

What's fixed

  • misc: Fix redirect to welcome problem when there are topics in inbox, closes #422 (3d2588a)

Version 0.98.2

Released on 2023-11-07

♻ Code Refactoring

  • misc: Refactor antd locale file to useSWR.

Improvements and Fixes

Code refactoring

  • misc: Refactor antd locale file to useSWR (2e1cd7c)

Version 0.98.1

Released on 2023-11-07

💄 Styles

  • misc: Update welcome assetes.

Improvements and Fixes

Styles

  • misc: Update welcome assetes (8840554)

Version 0.98.0

Released on 2023-11-07

Features

  • misc: Support latest openai model.

Improvements and Fixes

What's improved

  • misc: Support latest openai model, closes #417 (46386dc)

Version 0.97.1

Released on 2023-11-06

🐛 Bug Fixes

  • misc: Use pnpm to fix docker release.

Improvements and Fixes

What's fixed

  • misc: Use pnpm to fix docker release (886cc3b)

Version 0.97.0

Released on 2023-11-05

Features

  • misc: Add open new topic when open a topic.

🐛 Bug Fixes

  • misc: Fix toggle back to default topic when clearing topic.

Improvements and Fixes

What's improved

  • misc: Add open new topic when open a topic (4df6384)

What's fixed

  • misc: Fix toggle back to default topic when clearing topic (6fe0a5c)

Version 0.96.9

Released on 2023-11-04

💄 Styles

  • misc: Update topic list header.

Improvements and Fixes

Styles

  • misc: Update topic list header (ce932d7)

Version 0.96.8

Released on 2023-10-31

🐛 Bug Fixes

  • misc: Fix a bug that weather plugin is not work correctly, template remove sharp deps.

Improvements and Fixes

What's fixed

  • misc: Fix a bug that weather plugin is not work correctly (dbb65ff)
  • misc: Template remove sharp deps (380723d)

Version 0.96.7

Released on 2023-10-31

🐛 Bug Fixes

  • misc: Fix a bug when click inbox not switch back to chat page.

Improvements and Fixes

What's fixed

  • misc: Fix a bug when click inbox not switch back to chat page (31f6d29)

Version 0.96.6

Released on 2023-10-30

🐛 Bug Fixes

  • misc: Improve plausible analytics ENV.

Improvements and Fixes

What's fixed

  • misc: Improve plausible analytics ENV (aa851d4)

Version 0.96.5

Released on 2023-10-29

🐛 Bug Fixes

  • misc: Fix docker image optimization error log.

Improvements and Fixes

What's fixed

  • misc: Fix docker image optimization error log (730aec1)

Version 0.96.4

Released on 2023-10-29

🐛 Bug Fixes

  • misc: Fix agents market locale fallback to english.

Improvements and Fixes

What's fixed

  • misc: Fix agents market locale fallback to english, closes #382 (3814523)

Version 0.96.3

Released on 2023-10-28

💄 Styles

  • misc: Fix SessionList on mobile.

Improvements and Fixes

Styles

  • misc: Fix SessionList on mobile (e7e7b80)

Version 0.96.2

Released on 2023-10-28

💄 Styles

  • misc: Fix some styles and make updates to various files.

Improvements and Fixes

Styles

  • misc: Fix some styles and make updates to various files (44a5f0a)

Version 0.96.1

Released on 2023-10-28

💄 Styles

  • misc: Add guide to market page.

Improvements and Fixes

Styles

  • misc: Add guide to market page (8a794f9)

Version 0.96.0

Released on 2023-10-27

Features

  • misc: Improve pin mode about session group.

Improvements and Fixes

What's improved

  • misc: Improve pin mode about session group, closes #369 (75c5883)

Version 0.95.1

Released on 2023-10-25

💄 Styles

  • misc: Improve plugin message ui.

Improvements and Fixes

Styles

  • misc: Improve plugin message ui (6edd25b)

Version 0.95.0

Released on 2023-10-24

♻ Code Refactoring

  • misc: 优化 plugin 文件夹命名以支持 standalone 类型的插件.

Features

  • misc: Support function call at message end, support plugin settings modal, support plugin state and settings.

Improvements and Fixes

Code refactoring

  • misc: 优化 plugin 文件夹命名以支持 standalone 类型的插件 (98860a8)

What's improved

  • misc: Support function call at message end, closes #357 (e195fdb)
  • misc: Support plugin settings modal (f47b6fa)
  • misc: Support plugin state and settings (10829a4)

Version 0.94.5

Released on 2023-10-22

🐛 Bug Fixes

  • misc: Fallback agent market index to en when not find correct locale.

Improvements and Fixes

What's fixed

  • misc: Fallback agent market index to en when not find correct locale, closes #355 (7a45ab4)

Version 0.94.4

Released on 2023-10-21

🐛 Bug Fixes

  • misc: Fix break cn chars in stream mode.

Improvements and Fixes

What's fixed

  • misc: Fix break cn chars in stream mode, closes #347 (f831447)

Version 0.94.3

Released on 2023-10-19

🐛 Bug Fixes

  • misc: Fix agent share format.

Improvements and Fixes

What's fixed

  • misc: Fix agent share format (56ebc0b)

Version 0.94.2

Released on 2023-10-19

🐛 Bug Fixes

  • misc: Fix agent market with other locales.

Improvements and Fixes

What's fixed

  • misc: Fix agent market with other locales (2414d34)

Version 0.94.1

Released on 2023-10-19

💄 Styles

  • misc: Update ShareAgentButton.

Improvements and Fixes

Styles

  • misc: Update ShareAgentButton (c396bd7)

Version 0.94.0

Released on 2023-10-18

Features

  • misc: Add agent share.

Improvements and Fixes

What's improved

Version 0.93.0

Released on 2023-10-18

♻ Code Refactoring

  • misc: Refactor chain.

Features

  • misc: Support multi-language translate.

Improvements and Fixes

Code refactoring

What's improved

  • misc: Support multi-language translate (548bc5d)

Version 0.92.0

Released on 2023-10-18

Features

  • misc: Support translate message to current language.

Improvements and Fixes

What's improved

  • misc: Support translate message to current language, closes #340 (cf15f1e)

Version 0.91.0

Released on 2023-10-17

Features

  • misc: Add hotkeys.

Improvements and Fixes

What's improved

Version 0.90.3

Released on 2023-10-17

🐛 Bug Fixes

  • misc: Fix ActionBar props and regenerate btn with error message.

Improvements and Fixes

What's fixed

  • misc: Fix ActionBar props and regenerate btn with error message, closes #337 (246e8fd)

Version 0.90.2

Released on 2023-10-17

♻ Code Refactoring

  • misc: Refactor OpenAIStreamPayload with chat name.

Improvements and Fixes

Code refactoring

  • misc: Refactor OpenAIStreamPayload with chat name (a799530)

Version 0.90.1

Released on 2023-10-17

💄 Styles

  • misc: Fix lazyload height.

Improvements and Fixes

Styles

  • misc: Fix lazyload height (98efe02)

Version 0.90.0

Released on 2023-10-17

Features

  • misc: Add Lazyload.

Improvements and Fixes

What's improved

Version 0.89.10

Released on 2023-10-17

♻ Code Refactoring

  • misc: Refactor ChatList onActionsClick.

Improvements and Fixes

Code refactoring

  • misc: Refactor ChatList onActionsClick (d06d87e)

Version 0.89.9

Released on 2023-10-17

🐛 Bug Fixes

  • misc: Fix ChatList FC Render.

Improvements and Fixes

What's fixed

  • misc: Fix ChatList FC Render (4b8bdbd)

Version 0.89.8

Released on 2023-10-16

♻ Code Refactoring

  • misc: Refactor ChatList.

🐛 Bug Fixes

  • misc: Fix type.

Improvements and Fixes

Code refactoring

What's fixed

Version 0.89.7

Released on 2023-10-16

🐛 Bug Fixes

  • misc: Fix setting tab highlight (fix.

Improvements and Fixes

What's fixed

  • misc: Fix setting tab highlight (fix, closes #332 (d288f9d)

Version 0.89.6

Released on 2023-10-15


Improvements and Fixes

Version 0.89.5

Released on 2023-10-15

🐛 Bug Fixes

  • misc: Fix fallback to en when the locale is zh, fix reset button not clear plugin settings.

Improvements and Fixes

What's fixed

  • misc: Fix fallback to en when the locale is zh (ff2c00e)
  • misc: Fix reset button not clear plugin settings (aa1e657)

Version 0.89.4

Released on 2023-10-15

🐛 Bug Fixes

  • misc: Fix qwen, chatglm request failed.

Improvements and Fixes

What's fixed

  • misc: Fix qwen, chatglm request failed, closes #318 (a5699e2)

Version 0.89.3

Released on 2023-10-12

🐛 Bug Fixes

  • misc: Fix plugin error with nginx reverse proxy.

Improvements and Fixes

What's fixed

  • misc: Fix plugin error with nginx reverse proxy, closes #315 (3ba3a3b)

Version 0.89.2

Released on 2023-10-12

💄 Styles

  • misc: Modify onClick event in SessionHeader, change title in Loading component,.

Improvements and Fixes

Styles

  • misc: Modify onClick event in SessionHeader, change title in Loading component, (b984f6a)

Version 0.89.1

Released on 2023-10-12

🐛 Bug Fixes

  • misc: Remove useless dynamic import.

Improvements and Fixes

What's fixed

  • misc: Remove useless dynamic import (4a9c426)

Version 0.89.0

Released on 2023-10-12

Features

  • agent-card: Add and modify features for agent card.

Improvements and Fixes

What's improved

  • agent-card: Add and modify features for agent card (3e3090a)

Version 0.88.0

Released on 2023-10-11

Features

  • misc: Add mobile responsiveness, create new component, modify properties, make API calls, Dynamically import components using "dynamic" function.

Improvements and Fixes

What's improved

  • misc: Add mobile responsiveness, create new component, modify properties, make API calls (759c920)
  • misc: Dynamically import components using "dynamic" function (dd9db22)

Version 0.87.0

Released on 2023-10-11

Features

  • misc: Support custom model name.

Improvements and Fixes

What's improved

  • misc: Support custom model name, closes #305 (84a066a)

Version 0.86.5

Released on 2023-10-11

🐛 Bug Fixes

  • misc: Fix clear session error.

Improvements and Fixes

What's fixed

Version 0.86.4

Released on 2023-10-11

💄 Styles

  • misc: Improve api key form.

Improvements and Fixes

Styles

  • misc: Improve api key form (fa3170d)

Version 0.86.3

Released on 2023-10-11

🐛 Bug Fixes

  • misc: Fix docker image.

Improvements and Fixes

What's fixed

Version 0.86.2

Released on 2023-10-11

🐛 Bug Fixes

  • docker: Improve config to reduce unnecessary env and change default PORT.

Improvements and Fixes

What's fixed

  • docker: Improve config to reduce unnecessary env and change default PORT, closes #298 (6061318)

Version 0.86.1

Released on 2023-10-11

🐛 Bug Fixes

  • misc: Fix docker reverse proxy don't work.

Improvements and Fixes

What's fixed

  • misc: Fix docker reverse proxy don't work, closes #294 (a51ba1d)

Version 0.86.0

Released on 2023-10-10

Features

  • misc: Support docker deploy.

Improvements and Fixes

What's improved

Version 0.85.3

Released on 2023-10-10

💄 Styles

  • misc: Add new components, modify display properties, and update settings feature, Replace 100vh with 100% to fix mobile scroll problem.

Improvements and Fixes

Styles

  • misc: Add new components, modify display properties, and update settings feature (87a4a46)
  • misc: Replace 100vh with 100% to fix mobile scroll problem (2ef3c94)

Version 0.85.2

Released on 2023-10-10

🐛 Bug Fixes

  • misc: Add apikey form when there is no default api key in env.

Improvements and Fixes

What's fixed

  • misc: Add apikey form when there is no default api key in env, closes #290 (2c907e9)

Version 0.85.1

Released on 2023-10-10

🐛 Bug Fixes

  • misc: Fix mobile safe area (fix.

Improvements and Fixes

What's fixed

  • misc: Fix mobile safe area (fix, closes #211 (68775b8)

Version 0.85.0

Released on 2023-10-10

Features

  • misc: Add ja_JP, ko_KR and update workflow.

Improvements and Fixes

What's improved

  • misc: Add ja_JP, ko_KR and update workflow (57512a0)

Version 0.84.0

Released on 2023-10-10

Features

  • misc: Support detect new version and upgrade action.

Improvements and Fixes

What's improved

  • misc: Support detect new version and upgrade action, closes #282 (5da19b2)

Version 0.83.10

Released on 2023-10-09

♻ Code Refactoring

  • layout: Refactor layout, Refactor settings layout, Refactor ssc layout.
  • share: Use modern-screenshot.

🐛 Bug Fixes

  • misc: Fix rsc layout.

Improvements and Fixes

Code refactoring

  • layout: Refactor layout (ace21f4)
  • layout: Refactor settings layout (bd48121)
  • layout: Refactor ssc layout (26e1c41)
  • share: Use modern-screenshot, closes #256 (b3d7108)

What's fixed

Version 0.83.9

Released on 2023-10-08

♻ Code Refactoring

  • agent-market: Refactor desktop and mobile to improve mobile performance.

Improvements and Fixes

Code refactoring

  • agent-market: Refactor desktop and mobile to improve mobile performance, closes #278 (82b7f60)

Version 0.83.8

Released on 2023-10-07


Improvements and Fixes

Version 0.83.7

Released on 2023-10-07

🐛 Bug Fixes

  • misc: Fix shuffle, use search url with agent item.

💄 Styles

  • misc: Better tag style, improve loading state.

Improvements and Fixes

What's fixed

  • misc: Fix shuffle (d4b9dc3)
  • misc: Use search url with agent item (98df623)

Styles

  • misc: Better tag style (38e42ea)
  • misc: Improve loading state (f00c868)

Version 0.83.6

Released on 2023-10-06

💄 Styles

  • misc: Update modal style.

Improvements and Fixes

Styles

  • misc: Update modal style (2ab1475)

Version 0.83.5

Released on 2023-10-06

🐛 Bug Fixes

  • misc: Fix agent market list.

Improvements and Fixes

What's fixed

Version 0.83.4

Released on 2023-10-06

🐛 Bug Fixes

  • misc: Fix agent settings.

Improvements and Fixes

What's fixed

Version 0.83.3

Released on 2023-10-06

♻ Code Refactoring

  • misc: Refactor the settings layout to rsc.

Improvements and Fixes

Code refactoring

  • misc: Refactor the settings layout to rsc (b840f44)

Version 0.83.2

Released on 2023-10-06

🐛 Bug Fixes

  • misc: Fix setCookie method that set cookie with sub-path.

Improvements and Fixes

What's fixed

  • misc: Fix setCookie method that set cookie with sub-path, closes #269 (1b859b7)

Version 0.83.1

Released on 2023-10-06

♻ Code Refactoring

  • misc: Refactor settings page entry.

Improvements and Fixes

Code refactoring

  • misc: Refactor settings page entry (e86aff2)

Version 0.83.0

Released on 2023-10-06

Features

  • misc: Upgrade locale with SSR.

Improvements and Fixes

What's improved

Version 0.82.9

Released on 2023-10-05


Improvements and Fixes

Version 0.82.8

Released on 2023-09-30

♻ Code Refactoring

  • misc: Refactor / route to reduce page js size.

Improvements and Fixes

Code refactoring

  • misc: Refactor / route to reduce page js size (79f0347)

Version 0.82.7

Released on 2023-09-30

♻ Code Refactoring

  • misc: Refactor the api router to app route handlers.

Improvements and Fixes

Code refactoring

  • misc: Refactor the api router to app route handlers, closes #254 (f032112)

Version 0.82.6

Released on 2023-09-29

🐛 Bug Fixes

  • misc: Fix share default config, pin openai to fix type error.

Improvements and Fixes

What's fixed

  • misc: Fix share default config (e00d6bf)
  • misc: Pin openai to fix type error (5af4050)

Version 0.82.5

Released on 2023-09-29

💄 Styles

  • misc: Update theme color and styling of mobile settings page.

Improvements and Fixes

Styles

  • misc: Update theme color and styling of mobile settings page (1acfb71)

Version 0.82.4

Released on 2023-09-29

🐛 Bug Fixes

  • misc: 修正 localStorage 不存在造成设置页刷新 500 保存的问题.

Improvements and Fixes

What's fixed

  • misc: 修正 localStorage 不存在造成设置页刷新 500 保存的问题 (b894cc8)

Version 0.82.3

Released on 2023-09-29

🐛 Bug Fixes

  • misc: 修正 access code 校验逻辑,修正 api key 无法正常显示在秘钥输入框,并增加显示关闭按钮,修正移动端输入 access code 默认打开数据键盘的问题.

Improvements and Fixes

What's fixed

  • misc: 修正 access code 校验逻辑closes #184 (a7301c3)
  • misc: 修正 api key 无法正常显示在秘钥输入框并增加显示关闭按钮closes #182 (def1153)
  • misc: 修正移动端输入 access code 默认打开数据键盘的问题 (7994982)

Version 0.82.2

Released on 2023-09-28

♻ Code Refactoring

  • misc: Refactor settings page and mobile ux.

Improvements and Fixes

Code refactoring

  • misc: Refactor settings page and mobile ux (89c5648)

Version 0.82.1

Released on 2023-09-27

🐛 Bug Fixes

  • misc: Fix share screenshot scrollbar.

Improvements and Fixes

What's fixed

  • misc: Fix share screenshot scrollbar (244b3b4)

Version 0.82.0

Released on 2023-09-27

Features

  • share: Add screenshot.

Improvements and Fixes

What's improved

Version 0.81.0

Released on 2023-09-27

Features

  • misc: Add several analytics sdk.

Improvements and Fixes

What's improved

  • misc: Add several analytics sdk, closes #244 (65c6c93)

Version 0.80.2

Released on 2023-09-27

💄 Styles

  • misc: Switch Modal components to @lobehub/ui.

Improvements and Fixes

Styles

  • misc: Switch Modal components to @lobehub/ui (d056015)

Version 0.80.1

Released on 2023-09-27

💄 Styles

  • misc: Fix conversation mobile view area.

Improvements and Fixes

Styles

  • misc: Fix conversation mobile view area (6668e11)

Version 0.80.0

Released on 2023-09-27

Features

  • misc: Improve user experience and ensure consistency.

Improvements and Fixes

What's improved

  • misc: Improve user experience and ensure consistency (abba584)

Version 0.79.8

Released on 2023-09-27

💄 Styles

  • misc: Fix safearea in mobile.

Improvements and Fixes

Styles

  • misc: Fix safearea in mobile (2adfb04)

Version 0.79.7

Released on 2023-09-27

♻ Code Refactoring

  • misc: Use hook to check PWA env.

Improvements and Fixes

Code refactoring

  • misc: Use hook to check PWA env (b4234db)

Version 0.79.6

Released on 2023-09-27

💄 Styles

  • misc: Optimize PWA style and scroll effect.

Improvements and Fixes

Styles

  • misc: Optimize PWA style and scroll effect (0ae05b8)

Version 0.79.5

Released on 2023-09-26

🐛 Bug Fixes

  • misc: Fix URI error.

Improvements and Fixes

What's fixed

Version 0.79.4

Released on 2023-09-26

♻ Code Refactoring

  • misc: Move dir from page to app and remove .page suffix.

Improvements and Fixes

Code refactoring

  • misc: Move dir from page to app and remove .page suffix, closes #236 (2907303)

Version 0.79.3

Released on 2023-09-25

💄 Styles

  • meta: Update meta image.

Improvements and Fixes

Styles

Version 0.79.2

Released on 2023-09-25

💄 Styles

  • meta: Fix and add metadata.

Improvements and Fixes

Styles

  • meta: Fix and add metadata (c872522)

Version 0.79.1

Released on 2023-09-25

♻ Code Refactoring

  • migration: Next.js app router.

Improvements and Fixes

Code refactoring

Version 0.79.0

Released on 2023-09-25

Features

  • conversation: Add history range divider.

Improvements and Fixes

What's improved

  • conversation: Add history range divider, closes #118 (92d2c96)

Version 0.78.1

Released on 2023-09-21

💄 Styles

  • misc: Show topic tooltip on left side.

Improvements and Fixes

Styles

  • misc: Show topic tooltip on left side (f686fd2)

Version 0.78.0

Released on 2023-09-17

Features

  • misc: Auto create topic when chatting.

Improvements and Fixes

What's improved

  • misc: Auto create topic when chatting, closes #203 (f952792)

Version 0.77.2

Released on 2023-09-15

🐛 Bug Fixes

  • settings: Fix settings route.

Improvements and Fixes

What's fixed

Version 0.77.1

Released on 2023-09-14

🐛 Bug Fixes

  • misc: Fix lint.

Improvements and Fixes

What's fixed

Version 0.77.0

Released on 2023-09-14

Features

  • misc: Update localization files and add translations for different languages.

Improvements and Fixes

What's improved

  • misc: Update localization files and add translations for different languages (0157f92)

Version 0.76.2

Released on 2023-09-11

🐛 Bug Fixes

  • misc: Fix client config.

Improvements and Fixes

What's fixed

  • misc: Fix client config (d62f1b3)

Version 0.76.1

Released on 2023-09-11

🐛 Bug Fixes

  • misc: Fix save topic button.

Improvements and Fixes

What's fixed

  • misc: Fix save topic button (871905f)

Version 0.76.0

Released on 2023-09-11

Features

  • misc: Support Azure OpenAI Deploy env.

Improvements and Fixes

What's improved

  • misc: Support Azure OpenAI Deploy env, closes #183 (bda6732)

Version 0.75.0

Released on 2023-09-11

♻ Code Refactoring

  • misc: Fefactor index url fetch.

Features

  • market: Add prompt token count.
  • misc: Add agents market and improve UI components, Add and refactor components for chat input feature, Add functions for generating and analyzing JSON files, generating resource files and table of contents, and formatting console output, Add new settings for Azure OpenAI and OpenAI in locales files, Add new string, create AgentModal component, implement GridCardItem and Loading components, import AgentModal, Add SideBar component, new actions, and update market store state and selectors, Add translations and new setting to "setting.json", Improve functionality and user interface of market page, Modify market features components and update CSS styles, support add agent to chat.

🐛 Bug Fixes

  • misc: Fix fetcher, Fix market sidebar scroll and add i18n.

💄 Styles

  • misc: Update loading style and compatible with unknown agent identifier.

Improvements and Fixes

Code refactoring

  • misc: Fefactor index url fetch (257584b)

What's improved

  • market: Add prompt token count (16221a7)
  • misc: Add agents market and improve UI components (116c136)
  • misc: Add and refactor components for chat input feature (f1ac9fe)
  • misc: Add functions for generating and analyzing JSON files, generating resource files and table of contents, and formatting console output (d7c2e74)
  • misc: Add new settings for Azure OpenAI and OpenAI in locales files (e9e25b5)
  • misc: Add new string, create AgentModal component, implement GridCardItem and Loading components, import AgentModal (2a0e59f)
  • misc: Add SideBar component, new actions, and update market store state and selectors (8f6cfda)
  • misc: Add translations and new setting to "setting.json" (aca3822)
  • misc: Improve functionality and user interface of market page (1d465d6)
  • misc: Modify market features components and update CSS styles (97e4179)
  • misc: Support add agent to chat (3b930c4)

What's fixed

  • misc: Fix fetcher (171b2da)
  • misc: Fix market sidebar scroll and add i18n (9c897d2)

Styles

  • misc: Update loading style and compatible with unknown agent identifier (2e2231d)

Version 0.74.0

Released on 2023-09-11

Features

  • misc: Add russian locally, Update Russian and English locally (LLM tab).

Improvements and Fixes

What's improved

  • misc: Add russian locally (7b67c9f)
  • misc: Update Russian and English locally (LLM tab) (3b23e70)

Version 0.73.0

Released on 2023-09-10

Features

  • misc: Support Azure OpenAI.

Improvements and Fixes

What's improved

Version 0.72.4

Released on 2023-09-10

🐛 Bug Fixes

  • misc: Use en-US when no suit lang with plugin index.

Improvements and Fixes

What's fixed

  • misc: Use en-US when no suit lang with plugin index (4e9668d)

Version 0.72.3

Released on 2023-09-09

🐛 Bug Fixes

  • misc: Fix sessionList double click on mobile.

Improvements and Fixes

What's fixed

  • misc: Fix sessionList double click on mobile, closes #169 (3ea2bce)

Version 0.72.2

Released on 2023-09-09

🐛 Bug Fixes

  • misc: Fix mobile switch when session selected.

Improvements and Fixes

What's fixed

  • misc: Fix mobile switch when session selected, closes #167 (40d8a11)

Version 0.72.1

Released on 2023-09-09

🐛 Bug Fixes

  • misc: 修正异步水合造成的初始状态不稳定的问题.

Improvements and Fixes

What's fixed

  • misc: 修正异步水合造成的初始状态不稳定的问题 (2208f8a)

Version 0.72.0

Released on 2023-09-09

Features

  • misc: Add plugin market Setting Modal, 支持快速刷新与预览 manifest, 适配插件 i18n 方案.

🐛 Bug Fixes

  • misc: 修正删除插件时错误开启的问题.

💄 Styles

  • misc: 优化 manifest 预览的尺寸.

Improvements and Fixes

What's improved

  • misc: Add plugin market Setting Modal (a0603a9)
  • misc: 支持快速刷新与预览 manifest, closes #150 (5bd2eb0)
  • misc: 适配插件 i18n 方案 (8709ab3)

What's fixed

  • misc: 修正删除插件时错误开启的问题 (0e35c18)

Styles

  • misc: 优化 manifest 预览的尺寸 (27f8d6d)

Version 0.71.1

Released on 2023-09-09

🐛 Bug Fixes

  • misc: Fix mobile route.

Improvements and Fixes

What's fixed

Version 0.71.0

Released on 2023-09-09

Features

  • misc: Migrate localStorage to indexedDB.

Improvements and Fixes

What's improved

  • misc: Migrate localStorage to indexedDB, closes #160 (7f96deb)

Version 0.70.4

Released on 2023-09-09

🐛 Bug Fixes

  • misc: Fix route.

Improvements and Fixes

What's fixed

Version 0.70.3

Released on 2023-09-09

💄 Styles

  • misc: Better mobile style.

Improvements and Fixes

Styles

  • misc: Better mobile style (776c407)

Version 0.70.2

Released on 2023-09-08

🐛 Bug Fixes

  • misc: 修正移动端路由问题.

Improvements and Fixes

What's fixed

  • misc: 修正移动端路由问题 (ae3d2f4)

Version 0.70.1

Released on 2023-09-08

♻ Code Refactoring

  • misc: Refactor settingsSelectors to globalSelectors.

Improvements and Fixes

Code refactoring

  • misc: Refactor settingsSelectors to globalSelectors (38917e8)

Version 0.70.0

Released on 2023-09-08

Features

  • misc: Refactor to url state.

Improvements and Fixes

What's improved

Version 0.69.1

Released on 2023-09-06

♻ Code Refactoring

  • misc: Migrate openai-edge to openai.

Improvements and Fixes

Code refactoring

  • misc: Migrate openai-edge to openai, closes #145 (75ee574)

Version 0.69.0

Released on 2023-09-06

Features

  • misc: Add new import statement for "Flexbox" component in "Empty" component.

Improvements and Fixes

What's improved

  • misc: Add new import statement for "Flexbox" component in "Empty" component (68db626)

Version 0.68.1

Released on 2023-09-03

🐛 Bug Fixes

  • misc: 修正数组合并逻辑,修正被移除插件无法看到的问题.

Improvements and Fixes

What's fixed

  • misc: 修正数组合并逻辑 (e36e621)
  • misc: 修正被移除插件无法看到的问题 (c17eb56)

Version 0.68.0

Released on 2023-09-03

Features

  • misc: Plugin default use iframe render.

Improvements and Fixes

What's improved

  • misc: Plugin default use iframe render, closes #141 (35a3a16)

Version 0.67.0

Released on 2023-09-02

♻ Code Refactoring

  • plugin: 重构 plugin Store 组织结构,便于开发与迭代维护.

Features

  • plugin-dev: 优化 manifest 报错原因提示,并支持 id 从 manifest 自动获取.

🐛 Bug Fixes

  • plugin-dev: 修正编辑模式下预览展示问题和 id 重复校验问题.
  • plugin: 修正开启插件后会话无效的问题.

Improvements and Fixes

Code refactoring

  • plugin: 重构 plugin Store 组织结构,便于开发与迭代维护 (ec527cb)

What's improved

  • plugin-dev: 优化 manifest 报错原因提示,并支持 id 从 manifest 自动获取 (7f0787d)

What's fixed

  • plugin-dev: 修正编辑模式下预览展示问题和 id 重复校验问题 (17c39ef)
  • plugin: 修正开启插件后会话无效的问题 (82e3beb)

Version 0.66.0

Released on 2023-09-02

Features

  • misc: Add russian locally.

Improvements and Fixes

What's improved

Version 0.65.1

Released on 2023-09-01

🐛 Bug Fixes

  • misc: 修正 defaultAgent 无法正常变更的问题.

Improvements and Fixes

What's fixed

  • misc: 修正 defaultAgent 无法正常变更的问题 (788d94b)

Version 0.65.0

Released on 2023-08-29

Features

  • misc: 支持本地插件自定义 gateway.

Improvements and Fixes

What's improved

  • misc: 支持本地插件自定义 gateway, closes #129 (770048a)

Version 0.64.1

Released on 2023-08-29

💄 Styles

  • misc: Update i18n.

Improvements and Fixes

Styles

Version 0.64.0

Released on 2023-08-29

♻ Code Refactoring

  • misc: Remove no need i18n.

Features

  • misc: 增加自定义插件的增删改配置功能,完善自定义插件表单的校验逻辑,支持本地插件侧的请求与错误呈现,新增插件配置 Dev 弹窗,绑定本地插件的增删改逻辑.

Improvements and Fixes

Code refactoring

  • misc: Remove no need i18n (808a86a)

What's improved

  • misc: 增加自定义插件的增删改配置功能 (faba081)
  • misc: 完善自定义插件表单的校验逻辑 (4e1fd28)
  • misc: 支持本地插件侧的请求与错误呈现 (7e2b39a)
  • misc: 新增插件配置 Dev 弹窗 (20269b7)
  • misc: 绑定本地插件的增删改逻辑 (902e7ed)

Version 0.63.3

Released on 2023-08-28

♻ Code Refactoring

  • misc: Refactor with new market url.

Improvements and Fixes

Code refactoring

  • misc: Refactor with new market url, closes #123 (34a88f8)

Version 0.63.2

Released on 2023-08-27

♻ Code Refactoring

  • misc: Refactor AgentSettings.

Improvements and Fixes

Code refactoring

Version 0.63.1

Released on 2023-08-27

♻ Code Refactoring

  • misc: Refactor the selectors import.

Improvements and Fixes

Code refactoring

  • misc: Refactor the selectors import, closes #120 (6646502)

Version 0.63.0

Released on 2023-08-27

Features

  • misc: support sharing to shareGPT.

Improvements and Fixes

What's improved

  • misc: support sharing to shareGPT, closes #119 (026e9ec)

Version 0.62.1

Released on 2023-08-26

🐛 Bug Fixes

  • misc: Fix plugin settings error.

Improvements and Fixes

What's fixed

  • misc: Fix plugin settings error, closes #117 (064d90e)

Version 0.62.0

Released on 2023-08-26

Features

  • misc: 支持超过 4k 的会话使用 16k 总结标题.

🐛 Bug Fixes

  • misc: Fix plugin settings error.

💄 Styles

  • misc: 优化清理会话的操作路径,优化默认角色的配置.

Improvements and Fixes

What's improved

  • misc: 支持超过 4k 的会话使用 16k 总结标题 (5764cfb)

What's fixed

  • misc: Fix plugin settings error (008c2e3)

Styles

  • misc: 优化清理会话的操作路径 (6b7218e)
  • misc: 优化默认角色的配置 (a07d7a8)

Version 0.61.0

Released on 2023-08-26

Features

  • misc: 新增自动滚动.

Improvements and Fixes

What's improved

Version 0.60.4

Released on 2023-08-26

💄 Styles

  • misc: 优化文案.

Improvements and Fixes

Styles

Version 0.60.3

Released on 2023-08-26

🐛 Bug Fixes

  • misc: Fix global state merge error.

Improvements and Fixes

What's fixed

  • misc: Fix global state merge error (cbc2fc8)

Version 0.60.2

Released on 2023-08-26

🐛 Bug Fixes

  • misc: Fix fetch plugin header error.

Improvements and Fixes

What's fixed

  • misc: Fix fetch plugin header error (fa4a0e1)

Version 0.60.1

Released on 2023-08-26

🐛 Bug Fixes

  • misc: Fix settings storage error.

Improvements and Fixes

What's fixed

  • misc: Fix settings storage error (57d7eb1)

Version 0.60.0

Released on 2023-08-26

♻ Code Refactoring

  • misc: Refactor with new market index url.

Features

  • misc: 支持插件 manifest 加载失败后重试.

Improvements and Fixes

Code refactoring

  • misc: Refactor with new market index url (d2834b7)

What's improved

  • misc: 支持插件 manifest 加载失败后重试 (f36378e)

Version 0.59.0

Released on 2023-08-26

Features

  • misc: 支持展示插件插件状态,支持插件 i18n 模式展示.

Improvements and Fixes

What's improved

  • misc: 支持展示插件插件状态 (7e916ac)
  • misc: 支持插件 i18n 模式展示 (8614734)

Version 0.58.0

Released on 2023-08-26

Features

  • misc: Implement responsive design for mobile devices.

Improvements and Fixes

What's improved

  • misc: Implement responsive design for mobile devices, closes #95 (fdb3c93)

Version 0.57.0

Released on 2023-08-26

♻ Code Refactoring

  • misc: Refactor to ChatErrorType.

Features

  • misc: 完善插件请求的错误处理,支持修改与记录插件的配置,支持发送插件配置信息,支持渲染 manifest 中的 settings, 支持设置不正确时进行插件的配置,新增插件请求状态的错误处理.

🐛 Bug Fixes

  • misc: 修正缓存旧数据的报错问题.

Improvements and Fixes

Code refactoring

  • misc: Refactor to ChatErrorType (cd1a033)

What's improved

  • misc: 完善插件请求的错误处理 (0698d89)
  • misc: 支持修改与记录插件的配置 (76e8237)
  • misc: 支持发送插件配置信息 (2cedc85)
  • misc: 支持渲染 manifest 中的 settings (1185300)
  • misc: 支持设置不正确时进行插件的配置 (f972481)
  • misc: 新增插件请求状态的错误处理 (228002a)

What's fixed

  • misc: 修正缓存旧数据的报错问题 (5d8008f)

Version 0.56.0

Released on 2023-08-24

Features

  • misc: Use new plugin manifest to support plugins multi api.

Improvements and Fixes

What's improved

  • misc: Use new plugin manifest to support plugins multi api, closes #101 (4534598)

Version 0.55.1

Released on 2023-08-22

♻ Code Refactoring

  • misc: Refactor plugin api with @lobehub/chat-plugins-gateway.

Improvements and Fixes

Code refactoring

  • misc: Refactor plugin api with @lobehub/chat-plugins-gateway, closes #100 (b88d0db)

Version 0.55.0

Released on 2023-08-22

♻ Code Refactoring

  • misc: 将网关实现代码集成进 Chat 本体,抽取插件为独立 store, 重构 openai 接口调用逻辑,将插件 schema 开启关闭逻辑与接口解耦,重构插件列表获取逻辑,进而完全移除 plugins 目录.

Features

  • misc: 初步完成插件市场动态加载全链路,实现插件组件的动态加载.

🐛 Bug Fixes

  • misc: Fix error, 修正无法正常开启插件的问题,修正测试,补充插件 store 的水合逻辑.

💄 Styles

  • misc: 完成插件市场 loading 态样式.

Improvements and Fixes

Code refactoring

  • misc: 将网关实现代码集成进 Chat 本体 (17e8161)
  • misc: 抽取插件为独立 store (12b7e7d)
  • misc: 重构 openai 接口调用逻辑,将插件 schema 开启关闭逻辑与接口解耦 (5aa886e)
  • misc: 重构插件列表获取逻辑,进而完全移除 plugins 目录 (10055e1)

What's improved

  • misc: 初步完成插件市场动态加载全链路 (bc5e40f)
  • misc: 实现插件组件的动态加载 (04dbab2)

What's fixed

  • misc: Fix error (fbeec75)
  • misc: 修正无法正常开启插件的问题 (b3e9090)
  • misc: 修正测试 (001de5b)
  • misc: 补充插件 store 的水合逻辑 (bfb649b)

Styles

  • misc: 完成插件市场 loading 态样式 (8009691)

Version 0.54.4

Released on 2023-08-21

🐛 Bug Fixes

  • misc: Fix not cannot change setting error.

Improvements and Fixes

What's fixed

  • misc: Fix not cannot change setting error, closes #86 (6405c28)

Version 0.54.3

Released on 2023-08-21

♻ Code Refactoring

  • misc: Refactor plugin request.

Improvements and Fixes

Code refactoring

  • misc: Refactor plugin request, closes #89 (23efee3)

Version 0.54.2

Released on 2023-08-16

💄 Styles

  • misc: 修正图片选项的样式问题.

Improvements and Fixes

Styles

  • misc: 修正图片选项的样式问题 (5f576cb)

Version 0.54.1

Released on 2023-08-16

🐛 Bug Fixes

  • misc: 修正 i18n 失效的问题.

Improvements and Fixes

What's fixed

  • misc: 修正 i18n 失效的问题closes #80 (b8d957b)

Version 0.54.0

Released on 2023-08-15

Features

  • misc: Add new features and improve user interface and functionality.

Improvements and Fixes

What's improved

  • misc: Add new features and improve user interface and functionality (1543bd1)

Version 0.53.0

Released on 2023-08-15

Features

  • sidebar: Add DraggablePanelContainer and adjust layout and styling.

Improvements and Fixes

What's improved

  • sidebar: Add DraggablePanelContainer and adjust layout and styling (e8c384f)

Version 0.52.1

Released on 2023-08-15

♻ Code Refactoring

  • misc: Replace cdn.

Improvements and Fixes

Code refactoring

Version 0.52.0

Released on 2023-08-15

Features

  • misc: Add avatar compress.

Improvements and Fixes

What's improved

  • misc: Add avatar compress (1325b40)

Version 0.51.0

Released on 2023-08-15

Features

  • misc: Add Footer component and modify Token and index files.

Improvements and Fixes

What's improved

  • misc: Add Footer component and modify Token and index files (41a3823)

Version 0.50.0

Released on 2023-08-15

Features

  • misc: Update messages, settings, error codes, plugin names, weather data display, and UI.

Improvements and Fixes

What's improved

  • misc: Update messages, settings, error codes, plugin names, weather data display, and UI (a41db51)

Version 0.49.0

Released on 2023-08-15

Features

  • misc: Add BackToBottom to conversation, Update icons and text in various components.

Improvements and Fixes

What's improved

  • misc: Add BackToBottom to conversation (1433aa9)
  • misc: Update icons and text in various components (0e7a683)

Version 0.48.0

Released on 2023-08-15

Features

  • misc: Import SiOpenai icon and replace 'Tag' component in chat feature.

Improvements and Fixes

What's improved

  • misc: Import SiOpenai icon and replace 'Tag' component in chat feature (98b0352)

Version 0.47.0

Released on 2023-08-15

Features

  • misc: Add and update UI elements and agent configuration.

Improvements and Fixes

What's improved

  • misc: Add and update UI elements and agent configuration (eb7fbee)

Version 0.46.1

Released on 2023-08-14

💄 Styles

  • misc: Fix SystemRole Skeleton padding.

Improvements and Fixes

Styles

  • misc: Fix SystemRole Skeleton padding (ce485a0)

Version 0.46.0

Released on 2023-08-14

Features

  • misc: Update styling and functionality of AgentPrompt and EditableMessage components, 支持停止生成消息.

🐛 Bug Fixes

  • misc: Remove input highlight.

Improvements and Fixes

What's improved

  • misc: Update styling and functionality of AgentPrompt and EditableMessage components (80b521c)
  • misc: 支持停止生成消息closes #78 (9eeca80)

What's fixed

  • misc: Remove input highlight (ad2001a)

Version 0.45.0

Released on 2023-08-14

Features

  • misc: 优化每个角色的初始引导.

💄 Styles

  • misc: 优化初始化加载状态,等到会话加载完毕再显示内容.

Improvements and Fixes

What's improved

  • misc: 优化每个角色的初始引导closes #76 (8d78dc5)

Styles

  • misc: 优化初始化加载状态,等到会话加载完毕再显示内容 (cf603cb)

Version 0.44.4

Released on 2023-08-13

💄 Styles

  • misc: 优化 Chat Skeleton 样式,优化 Inbox 样式.

Improvements and Fixes

Styles

  • misc: 优化 Chat Skeleton 样式 (3f83be0)
  • misc: 优化 Inbox 样式 (924c12e)

Version 0.44.3

Released on 2023-08-13

♻ Code Refactoring

  • misc: 重构 organizeChats 方法.

🐛 Bug Fixes

  • misc: 修正 inbox 点击重新生成会报错的问题.

💄 Styles

  • misc: 修正话题列表无法滚动的问题.

Improvements and Fixes

Code refactoring

  • misc: 重构 organizeChats 方法 (799612e)

What's fixed

  • misc: 修正 inbox 点击重新生成会报错的问题 (064ef56)

Styles

  • misc: 修正话题列表无法滚动的问题 (26772e7)

Version 0.44.2

Released on 2023-08-13

🐛 Bug Fixes

  • misc: 修正重新生成时切分历史消息的逻辑.

Improvements and Fixes

What's fixed

  • misc: 修正重新生成时切分历史消息的逻辑closes #50 (de5141f)

Version 0.44.1

Released on 2023-08-12


Improvements and Fixes

Version 0.44.0

Released on 2023-08-12

♻ Code Refactoring

  • misc: 优化 Inbox 会话的实现逻辑,将 chat 中的功能模型拆分到 features 中,重构 session 相关实现,移除循环依赖.

Features

  • misc: 支持 inbox 消息导出,支持 inbox 的会话功能,新增 inbox 数据模型,新增 inbox 模块入口.

💄 Styles

  • misc: Fix Inbox defaultMessage avatar, 优化 header 的 setting 展示,优化门禁下默认的解锁方式,补充 ChatList 的 Loading 态.

Improvements and Fixes

Code refactoring

  • misc: 优化 Inbox 会话的实现逻辑 (22cc4cf)
  • misc: 将 chat 中的功能模型拆分到 features 中 (e25a856)
  • misc: 重构 session 相关实现,移除循环依赖 (9acf65c)

What's improved

  • misc: 支持 inbox 消息导出 (498e075)
  • misc: 支持 inbox 的会话功能 (9b713b8)
  • misc: 新增 inbox 数据模型 (91a8158)
  • misc: 新增 inbox 模块入口 (6fc8907)

Styles

  • misc: Fix Inbox defaultMessage avatar (dbc18a4)
  • misc: 优化 header 的 setting 展示 (201d380)
  • misc: 优化门禁下默认的解锁方式 (df9bb45)
  • misc: 补充 ChatList 的 Loading 态 (eb3eb5d)

Version 0.43.0

Released on 2023-08-12

Features

  • misc: 支持切换语言.

Improvements and Fixes

What's improved

Version 0.42.3

Released on 2023-08-12

💄 Styles

  • misc: 暂时隐藏 Hero 模板.

Improvements and Fixes

Styles

  • misc: 暂时隐藏 Hero 模板 (8289ae6)

Version 0.42.2

Released on 2023-08-12

♻ Code Refactoring

  • misc: 将 useSettings 更名为 useGlobalStore, 将原本的 settings 更名为 global, 收敛切换 SideBar 方法为 useSwitchSideBarOnInit, 重构需本地缓存的状态为 preference.

🐛 Bug Fixes

  • misc: 修正移除 session 时的路由跳转逻辑.

Improvements and Fixes

Code refactoring

  • misc: 将 useSettings 更名为 useGlobalStore (bdde7df)
  • misc: 将原本的 settings 更名为 global (e42d34c)
  • misc: 收敛切换 SideBar 方法为 useSwitchSideBarOnInit (bbad38f)
  • misc: 重构需本地缓存的状态为 preference (8359b62)

What's fixed

  • misc: 修正移除 session 时的路由跳转逻辑 (8b7838d)

Version 0.42.1

Released on 2023-08-12

💄 Styles

  • misc: 优化 App 首页 Loading 态.

Improvements and Fixes

Styles

  • misc: 优化 App 首页 Loading 态 (72104e8)

Version 0.42.0

Released on 2023-08-11

Features

  • misc: Add Welcome page.

Improvements and Fixes

What's improved

Version 0.41.2

Released on 2023-08-10

♻ Code Refactoring

  • misc: 将 sessionStore 默认 equalFn 改为 shallow, 将 settingStore 默认 equalFn 改为 shallow.

Improvements and Fixes

Code refactoring

  • misc: 将 sessionStore 默认 equalFn 改为 shallow (5c1b8d7)
  • misc: 将 settingStore 默认 equalFn 改为 shallow (1e72308)

Version 0.41.1

Released on 2023-08-10

♻ Code Refactoring

  • misc: 重构 settings store 代码写法.

Improvements and Fixes

Code refactoring

  • misc: 重构 settings store 代码写法 (4b6f917)

Version 0.41.0

Released on 2023-08-10

Features

  • misc: 支持持久化隐藏 Topic 功能.

💄 Styles

  • misc: 优化第一次水合逻辑.

Improvements and Fixes

What's improved

  • misc: 支持持久化隐藏 Topic 功能 (9ea2778)

Styles

  • misc: 优化第一次水合逻辑 (fefae61)

Version 0.40.7

Released on 2023-08-10

💄 Styles

  • misc: 优化 Topic 的水合加载效果.

Improvements and Fixes

Styles

  • misc: 优化 Topic 的水合加载效果 (0cd0088)

Version 0.40.6

Released on 2023-08-10

♻ Code Refactoring

  • misc: 重构优化 hydrated 的判断逻辑.

💄 Styles

  • misc: 优化水合前的加载效果.

Improvements and Fixes

Code refactoring

  • misc: 重构优化 hydrated 的判断逻辑 (1781119)

Styles

  • misc: 优化水合前的加载效果 (6bbd978)

Version 0.40.5

Released on 2023-08-10

💄 Styles

  • misc: 增加未初始化的 loading 态.

Improvements and Fixes

Styles

  • misc: 增加未初始化的 loading 态 (dcb7c07)

Version 0.40.4

Released on 2023-08-10

💄 Styles

  • misc: 优化 Header 样式.

Improvements and Fixes

Styles

  • misc: 优化 Header 样式 (edd148a)

Version 0.40.3

Released on 2023-08-10

🐛 Bug Fixes

  • misc: 修正没有 prompt 的编辑与保存按钮的问题.

Improvements and Fixes

What's fixed

  • misc: 修正没有 prompt 的编辑与保存按钮的问题 (b7e1648)

Version 0.40.2

Released on 2023-08-08

🐛 Bug Fixes

  • misc: 修正 defaults 造成的 config 报错.

Improvements and Fixes

What's fixed

  • misc: 修正 defaults 造成的 config 报错 (0857fa7)

Version 0.40.1

Released on 2023-08-06

🐛 Bug Fixes

  • misc: 优化 openai 接口的错误处理逻辑.

Improvements and Fixes

What's fixed

  • misc: 优化 openai 接口的错误处理逻辑 (eae78fe)

Version 0.40.0

Released on 2023-08-05

Features

  • misc: Add new dependency, add Tag and PluginTag components, update HeaderTitle.

Improvements and Fixes

What's improved

  • misc: Add new dependency, add Tag and PluginTag components, update HeaderTitle, closes #56 #55 #54 (2812ea2)

Version 0.39.4

Released on 2023-08-05

💄 Styles

  • misc: 修正 assistant 消息没有 background 的问题.

Improvements and Fixes

Styles

  • misc: 修正 assistant 消息没有 background 的问题closes #42 (812e976)

Version 0.39.3

Released on 2023-08-04

🐛 Bug Fixes

  • misc: 优化 405 报错返回内容,并优化 openai 服务端超时处理逻辑.

Improvements and Fixes

What's fixed

  • misc: 优化 405 报错返回内容,并优化 openai 服务端超时处理逻辑 (0acc829)

Version 0.39.2

Released on 2023-08-04

💄 Styles

  • misc: 优化 topic 样式.

Improvements and Fixes

Styles

  • misc: 优化 topic 样式 (75dc034)

Version 0.39.1

Released on 2023-08-04

🐛 Bug Fixes

  • misc: 修正 basePath 在生产环境下不生效的问题.

Improvements and Fixes

What's fixed

  • misc: 修正 basePath 在生产环境下不生效的问题 (71b9139)

Version 0.39.0

Released on 2023-08-04

Features

  • misc: 支持多轮的插件意图识别,支持自定义 OpenAI 代理地址.

💄 Styles

  • misc: 优化插件的展示逻辑.

Improvements and Fixes

What's improved

  • misc: 支持多轮的插件意图识别 (5127f1b)
  • misc: 支持自定义 OpenAI 代理地址 (33a111c)

Styles

  • misc: 优化插件的展示逻辑 (7621bad)

Version 0.38.0

Released on 2023-08-04

Features

  • misc: Add topic empty.

Improvements and Fixes

What's improved

Version 0.37.0

Released on 2023-08-03

Features

  • misc: 支持使用全局助手的设置作为默认助手的创建角色.

Improvements and Fixes

What's improved

  • misc: 支持使用全局助手的设置作为默认助手的创建角色closes #44 (f91857d)

Version 0.36.1

Released on 2023-08-03

♻ Code Refactoring

  • misc: Refactor zustand usage with v4.4.

Improvements and Fixes

Code refactoring

  • misc: Refactor zustand usage with v4.4, closes #52 (4c65aa7)

Version 0.36.0

Released on 2023-08-03

Features

  • misc: 实现自定义历史消息数功能.

🐛 Bug Fixes

  • misc: Fix setting type.

💄 Styles

  • misc: Fix session item height.

Improvements and Fixes

What's improved

  • misc: 实现自定义历史消息数功能 (7baa022)

What's fixed

Styles

  • misc: Fix session item height (6cd1de5)

Version 0.35.1

Released on 2023-07-31

💄 Styles

  • misc: Update doc mode and token tags.

Improvements and Fixes

Styles

  • misc: Update doc mode and token tags (1d3c5b6)

Version 0.35.0

Released on 2023-07-31

Features

  • misc: Add agent settings functionality, new components, and features for AgentMeta, Add and modify translations for various keys in JSON code files.

Improvements and Fixes

What's improved

  • misc: Add agent settings functionality, new components, and features for AgentMeta (b1e5ff9)
  • misc: Add and modify translations for various keys in JSON code files (503adb4)

Version 0.34.0

Released on 2023-07-31

Features

  • misc: Add agent settings functionality, Add new components and features for AgentMeta, Improve organization and functionality of settings and configuration features.

Improvements and Fixes

What's improved

  • misc: Add agent settings functionality (b0aaeed)
  • misc: Add new components and features for AgentMeta (1232d95)
  • misc: Improve organization and functionality of settings and configuration features (badde35)

Version 0.33.0

Released on 2023-07-30

Features

  • misc: 支持输入模板预处理.

Improvements and Fixes

What's improved

  • misc: 支持输入模板预处理 (84082c1)

Version 0.32.0

Released on 2023-07-30

Features

  • misc: 支持会话置顶.

Improvements and Fixes

What's improved

Version 0.31.0

Released on 2023-07-30

Features

  • misc: 支持展示 token 使用量.

Improvements and Fixes

What's improved

  • misc: 支持展示 token 使用量closes #31 (e4d4dac)

Version 0.30.1

Released on 2023-07-30

💄 Styles

  • misc: 优化搜索引擎插件展示.

Improvements and Fixes

Styles

  • misc: 优化搜索引擎插件展示 (347e6b0)

Version 0.30.0

Released on 2023-07-30

Features

  • misc: 优化保存为话题功能,实现 Topic 重命名功能,实现话题删除功能,支持缓存角色面板的展开折叠状态.

Improvements and Fixes

What's improved

  • misc: 优化保存为话题功能 (fdbe084)
  • misc: 实现 Topic 重命名功能 (5ef1685)
  • misc: 实现话题删除功能 (970889d)
  • misc: 支持缓存角色面板的展开折叠状态 (c241c4b)

Version 0.29.0

Released on 2023-07-30

Features

  • misc: 实现单个会话和角色的导出功能,实现清空所有会话消息.

Improvements and Fixes

What's improved

  • misc: 实现单个会话和角色的导出功能 (d15a481)
  • misc: 实现清空所有会话消息 (64c5125)

Version 0.28.0

Released on 2023-07-30

♻ Code Refactoring

  • misc: 重构 settings 相关类型.

Features

  • misc: 优化 SideBar 实现,激活态指示更加明确,实现 session 导入功能,实现配置导出功能.

Improvements and Fixes

Code refactoring

  • misc: 重构 settings 相关类型 (6b7c0a0)

What's improved

  • misc: 优化 SideBar 实现,激活态指示更加明确 (8a467df)
  • misc: 实现 session 导入功能 (5650167)
  • misc: 实现配置导出功能 (c1f73fe)

Version 0.27.4

Released on 2023-07-29

🐛 Bug Fixes

  • misc: 修正日志超过 4096 长度的问题.

Improvements and Fixes

What's fixed

  • misc: 修正日志超过 4096 长度的问题 (6066aff)

Version 0.27.3

Released on 2023-07-29

🐛 Bug Fixes

  • misc: 修正返回结果导致插件无法正常识别的问题.

💄 Styles

  • misc: 优化样式.

Improvements and Fixes

What's fixed

  • misc: 修正返回结果导致插件无法正常识别的问题 (b183188)

Styles

Version 0.27.2

Released on 2023-07-29

♻ Code Refactoring

  • misc: 重构并优化文档抓取插件能力.

Improvements and Fixes

Code refactoring

  • misc: 重构并优化文档抓取插件能力 (ff56348)

Version 0.27.1

Released on 2023-07-29

💄 Styles

  • misc: 优化搜索引擎样式.

Improvements and Fixes

Styles

  • misc: 优化搜索引擎样式 (699afb3)

Version 0.27.0

Released on 2023-07-29

Features

  • misc: 优化搜索引擎插件交互展示.

💄 Styles

  • misc: 优化兜底结果展示.

Improvements and Fixes

What's improved

  • misc: 优化搜索引擎插件交互展示 (4751084)

Styles

  • misc: 优化兜底结果展示 (9da45d6)

Version 0.26.1

Released on 2023-07-29

♻ Code Refactoring

  • misc: 优化 setting Layout 实现.

Improvements and Fixes

Code refactoring

  • misc: 优化 setting Layout 实现 (f789935)

Version 0.26.0

Released on 2023-07-28

Features

  • misc: support password auth and error.

Improvements and Fixes

What's improved

  • misc: support password auth and error, closes #22 (67f1f4d)

Version 0.25.0

Released on 2023-07-26

Features

  • sidebar: Add import functionality and set labels and onClick functions

Improvements and Fixes

Features

  • sidebar: Add import functionality and set labels and onClick functions (03ea9bd)

Version 0.24.0

Released on 2023-07-26

Features

  • misc: Add new translations, update existing translations, add functionality to components, modify styling, and adjust placeholder text

Improvements and Fixes

Features

  • Add new translations, update existing translations, add functionality to components, modify styling, and adjust placeholder text (da4ae72)

Version 0.23.0

Released on 2023-07-26

Features

  • misc: Add new features, update URLs, customize appearance, and implement components

Improvements and Fixes

Features

  • Add new features, update URLs, customize appearance, and implement components (4b61bf4)

Version 0.22.2

Released on 2023-07-26

💄 Styles

  • misc: 优化 tooltip 显示.

Improvements and Fixes

Styles

  • misc: 优化 tooltip 显示 (4ba0295)

Version 0.22.1

Released on 2023-07-25

🐛 Bug Fixes

  • misc: 修正自定义 OpenAI API Key 的使用问题.

Improvements and Fixes

What's fixed

  • misc: 修正自定义 OpenAI API Key 的使用问题 (84475c0)

Version 0.22.0

Released on 2023-07-25

Features

  • misc: 支持使用自定义 OpenAI Key.

Improvements and Fixes

What's improved

  • misc: 支持使用自定义 OpenAI Key, closes #20 (fb454a0)

Version 0.21.0

Released on 2023-07-25

♻ Code Refactoring

  • misc: Move component folder.

Features

  • misc: 支持快捷配置模型、温度.

Improvements and Fixes

Code refactoring

  • misc: Move component folder (fb85d16)

What's improved

  • misc: 支持快捷配置模型、温度closes #19 (31daee1)

Version 0.20.0

Released on 2023-07-25

Features

  • misc: 实现话题模块.

Improvements and Fixes

What's improved

Version 0.19.0

Released on 2023-07-24

♻ Code Refactoring

  • misc: 将 message reducer 提取到独立文件夹中,清理无用代码实现.

Features

  • misc: 数据结构层完成 topic 模型改造.

Improvements and Fixes

Code refactoring

  • misc: 将 message reducer 提取到独立文件夹中 (64f40ca)
  • misc: 清理无用代码实现 (3655b60)

What's improved

  • misc: 数据结构层完成 topic 模型改造 (99fa2a6)

Version 0.18.2

Released on 2023-07-24

💄 Styles

  • misc: 修正 markdown li 丢失的问题.

Improvements and Fixes

Styles

  • misc: 修正 markdown li 丢失的问题 (eb6e831)

Version 0.18.1

Released on 2023-07-24

♻ Code Refactoring

  • misc: 优化新会话的创建逻辑 session.

Improvements and Fixes

Code refactoring

  • misc: 优化新会话的创建逻辑 session (d70f22d)

Version 0.18.0

Released on 2023-07-24

Features

  • misc: 实现会话展示模式切换,并优化默认创建角色的配置.

Improvements and Fixes

What's improved

  • misc: 实现会话展示模式切换,并优化默认创建角色的配置 (27ae82f)

Version 0.17.0

Released on 2023-07-24

Features

  • misc: 表单配置支持设定各项高级参数.

Improvements and Fixes

What's improved

  • misc: 表单配置支持设定各项高级参数 (6949cc6)

Version 0.16.1

Released on 2023-07-24

♻ Code Refactoring

  • misc: 重构优化 selectors 实现.

💄 Styles

  • misc: 优化 document title.

Improvements and Fixes

Code refactoring

  • misc: 重构优化 selectors 实现 (97fe1cd)

Styles

  • misc: 优化 document title (c3cda00)

Version 0.16.0

Released on 2023-07-24

Features

  • misc: 支持自动跳转到第一条会话.

💄 Styles

  • misc: 修正插件的展示文案.

Improvements and Fixes

What's improved

  • misc: 支持自动跳转到第一条会话 (54f01c7)

Styles

  • misc: 修正插件的展示文案 (53c81ae)

Version 0.15.1

Released on 2023-07-24

💄 Styles

  • misc: 更新插件文案.

Improvements and Fixes

Styles

  • misc: 更新插件文案 (0411335)

Version 0.15.0

Released on 2023-07-24

Features

  • misc: Add new features and improve user experience, Import and use constants from "meta.ts" instead of "agentConfig".

Improvements and Fixes

What's improved

  • misc: Add new features and improve user experience (64c8782)
  • misc: Import and use constants from "meta.ts" instead of "agentConfig" (1eb6a17)

Version 0.14.0

Released on 2023-07-24

Features

  • misc: 支持网页抓取.

Improvements and Fixes

What's improved

Version 0.13.1

Released on 2023-07-23

🐛 Bug Fixes

  • misc: 修正搜索引擎插件的实现问题.

Improvements and Fixes

What's fixed

  • misc: 修正搜索引擎插件的实现问题 (d19a805)

Version 0.13.0

Released on 2023-07-23

Features

  • misc: 优化插件模式下的用户体验.

Improvements and Fixes

What's improved

  • misc: 优化插件模式下的用户体验closes #13 (4596f12)

Version 0.12.1

Released on 2023-07-23

🐛 Bug Fixes

  • misc: 修正 message parentId 不正确的问题.

Improvements and Fixes

What's fixed

  • misc: 修正 message parentId 不正确的问题 (f86852a)

Version 0.12.0

Released on 2023-07-23

Features

  • misc: 支持插件列表 与 基于 Serpapi 的搜索引擎插件.

Improvements and Fixes

What's improved

  • misc: 支持插件列表 与 基于 Serpapi 的搜索引擎插件closes #12 (d89e06f)

Version 0.11.0

Released on 2023-07-23

♻ Code Refactoring

  • misc: Remove langchain, 优化代码.

Features

  • misc: 支持查询天气.

💄 Styles

  • misc: Update manifest, 增加国际化文案.

Improvements and Fixes

Code refactoring

What's improved

  • misc: 支持查询天气 (34bf285)

Styles

  • misc: Update manifest (ea9e8de)
  • misc: 增加国际化文案 (f5e8d7c)

Version 0.10.2

Released on 2023-07-23

💄 Styles

  • misc: 优化模型在 list 中的展示逻辑.

Improvements and Fixes

Styles

  • misc: 优化模型在 list 中的展示逻辑 (4bdf3c5)

Version 0.10.1

Released on 2023-07-22

💄 Styles

  • misc: 修正对话中用户头像的问题.

Improvements and Fixes

Styles

  • misc: 修正对话中用户头像的问题 (560c8bb)

Version 0.10.0

Released on 2023-07-22

Features

  • misc: 支持复制与编辑会话消息.

Improvements and Fixes

What's improved

  • misc: 支持复制与编辑会话消息 (bebcf9f)

Version 0.9.0

Released on 2023-07-22

Features

  • misc: 展示模型类型.

Improvements and Fixes

What's improved

  • misc: 展示模型类型 (58ea93c)

Version 0.8.2

Released on 2023-07-22

🐛 Bug Fixes

  • misc: Fix miss manifest.json link, 优化 model tag 展示逻辑.

Improvements and Fixes

What's fixed

  • misc: Fix miss manifest.json link (ac4b2f3)
  • misc: 优化 model tag 展示逻辑 (3463ede)

Version 0.8.1

Released on 2023-07-22

🐛 Bug Fixes

  • misc: Fix import.

Improvements and Fixes

What's fixed

Version 0.8.0

Released on 2023-07-22

Features

  • misc: 支持 pwa 模式.

Improvements and Fixes

What's improved

  • misc: 支持 pwa 模式 (8aad92d)

Version 0.7.0

Released on 2023-07-22

Features

  • misc: 支持展示来自模型的标记信息.

Improvements and Fixes

What's improved

  • misc: 支持展示来自模型的标记信息 (e27fae9)

Version 0.6.1

Released on 2023-07-22

🐛 Bug Fixes

  • misc: Add deps.

Improvements and Fixes

What's fixed

Version 0.6.0

Released on 2023-07-22

♻ Code Refactoring

  • misc: 重构 selector 文件组织.

Features

  • misc: 补充 token 详情.

Improvements and Fixes

Code refactoring

  • misc: 重构 selector 文件组织 (2ad0ef9)

What's improved

  • misc: 补充 token 详情 (098f7ff)

Version 0.5.0

Released on 2023-07-22

Features

  • misc: 支持选择 Emoji.

🐛 Bug Fixes

  • misc: 修正 total token 计算不正确的问题.

Improvements and Fixes

What's improved

  • misc: 支持选择 Emoji (6cb4828)

What's fixed

  • misc: 修正 total token 计算不正确的问题 (17815c6)

Version 0.4.3

Released on 2023-07-22

♻ Code Refactoring

  • misc: 优化 edit 代码结构.

Improvements and Fixes

Code refactoring

  • misc: 优化 edit 代码结构 (fdb3a3f)

Version 0.4.2

Released on 2023-07-22

💄 Styles

  • misc: Fix input style, fix layout.

Improvements and Fixes

Styles

Version 0.4.1

Released on 2023-07-22

🐛 Bug Fixes

  • misc: Fix SSR style error.

Improvements and Fixes

What's fixed

  • misc: Fix SSR style error (289eae7)

Version 0.4.0

Released on 2023-07-20

Features

  • misc: Add styles and modify layout of FolderPanel, SliderWithInput, SessionList, EditPage, ChatLayout, and SettingLayout components, Introduce FOLDER_WIDTH constant and update components.

Improvements and Fixes

What's improved

  • misc: Add styles and modify layout of FolderPanel, SliderWithInput, SessionList, EditPage, ChatLayout, and SettingLayout components (7f19a09)
  • misc: Introduce FOLDER_WIDTH constant and update components (c511964)

Version 0.3.0

Released on 2023-07-18

Features

  • misc: Add new files, modify components, and adjust layout and styling.

Improvements and Fixes

What's improved

  • misc: Add new files, modify components, and adjust layout and styling (b8c3b38)

Version 0.2.0

Released on 2023-07-18

Features

  • misc: Add import statement and define CSS styles for Avatar component.

Improvements and Fixes

What's improved

  • misc: Add import statement and define CSS styles for Avatar component (8c23a8d)

Version 0.1.6

Released on 2023-07-18


Improvements and Fixes