Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected the identifier "baichuan2-13b" in the configuration file #1784

Closed
wants to merge 31 commits into from

Commits on Sep 23, 2023

  1. Add files via upload

    imClumsyPanda committed Sep 23, 2023
    Configuration menu
    Copy the full SHA
    39337a6 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    imClumsyPanda committed Sep 23, 2023
    Configuration menu
    Copy the full SHA
    af46ed9 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2023

  1. Add files via upload

    imClumsyPanda committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    0641ce5 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    imClumsyPanda committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    db169f6 View commit details
    Browse the repository at this point in the history
  3. 发版:v0.2.5 (chatchat-space#1620)

    * 优化configs (chatchat-space#1474)
    
    * remove llm_model_dict
    
    * optimize configs
    
    * fix get_model_path
    
    * 更改一些默认参数,添加千帆的默认配置
    
    * Update server_config.py.example
    
    * fix merge conflict for chatchat-space#1474 (chatchat-space#1494)
    
    * 修复ChatGPT api_base_url错误;用户可以在model_config在线模型配置中覆盖默认的api_base_url (chatchat-space#1496)
    
    * 优化LLM模型列表获取、切换的逻辑: (chatchat-space#1497)
    
    1、更准确的获取未运行的可用模型
    2、优化WEBUI模型列表显示与切换的控制逻辑
    
    * 更新migrate.py和init_database.py,加强知识库迁移工具: (chatchat-space#1498)
    
    1. 添加--update-in-db参数,按照数据库信息,从本地文件更新向量库
    2. 添加--increament参数,根据本地文件增量更新向量库
    3. 添加--prune-db参数,删除本地文件后,自动清理相关的向量库
    4. 添加--prune-folder参数,根据数据库信息,清理无用的本地文件
    5. 取消--update-info-only参数。数据库中存储了向量库信息,该操作意义不大
    6. 添加--kb-name参数,所有操作支持指定操作的知识库,不指定则为所有本地知识库
    7. 添加知识库迁移的测试用例
    8. 删除milvus_kb_service的save_vector_store方法
    
    * feat: support volc fangzhou
    
    * 使火山方舟正常工作,添加错误处理和测试用例
    
    * feat: support volc fangzhou (chatchat-space#1501)
    
    * feat: support volc fangzhou
    
    ---------
    
    Co-authored-by: liunux4odoo <41217877+liunux4odoo@users.noreply.github.com>
    Co-authored-by: liqiankun.1111 <liqiankun.1111@bytedance.com>
    
    * 第一版初步agent实现 (chatchat-space#1503)
    
    * 第一版初步agent实现
    
    * 增加steaming参数
    
    * 修改了weather.py
    
    ---------
    
    Co-authored-by: zR <zRzRzRzRzRzRzR>
    
    * 添加configs/prompt_config.py,允许用户自定义prompt模板: (chatchat-space#1504)
    
    1、 默认包含2个模板,分别用于LLM对话,知识库和搜索引擎对话
    2、 server/utils.py提供函数get_prompt_template,获取指定的prompt模板内容(支持热加载)
    3、 api.py中chat/knowledge_base_chat/search_engine_chat接口支持prompt_name参数
    
    * 增加其它模型的参数适配
    
    * 增加传入矢量名称加载
    
    * 1. 搜索引擎问答支持历史记录;
    2. 修复知识库问答历史记录传参错误:用户输入被传入history,问题出在webui中重复获取历史消息,api知识库对话接口并无问题。
    
    * langchain日志开关
    
    * move wrap_done & get_ChatOpenAI from server.chat.utils to server.utils (chatchat-space#1506)
    
    * 修复faiss_pool知识库缓存key错误 (chatchat-space#1507)
    
    * fix ReadMe anchor link (chatchat-space#1500)
    
    * fix : Duplicate variable and function name (chatchat-space#1509)
    
    Co-authored-by: Jim <zhangpengyi@taijihuabao.com>
    
    * Update README.md
    
    * fix chatchat-space#1519: streamlit-chatbox旧版BUG,但新版有兼容问题,先在webui中作处理,并限定chatbox版本 (chatchat-space#1525)
    
    close chatchat-space#1519
    
    * 【功能新增】在线 LLM 模型支持阿里云通义千问 (chatchat-space#1534)
    
    * feat: add qwen-api
    
    * 使Qwen API支持temperature参数;添加测试用例
    
    * 将online-api的sdk列为可选依赖
    
    ---------
    
    Co-authored-by: liunux4odoo <liunux@qq.com>
    
    * 处理序列化至磁盘的逻辑
    
    * remove depends on volcengine
    
    * update kb_doc_api: use Form instead of Body when upload file
    
    * 将所有httpx请求改为使用Client,提高效率,方便以后设置代理等。 (chatchat-space#1554)
    
    将所有httpx请求改为使用Client,提高效率,方便以后设置代理等。
    
    将本项目相关服务加入无代理列表,避免fastchat的服务器请求错误。(windows下无效)
    
    * update QR code
    
    * update readme_en,readme,requirements_api,requirements,model_config.py.example:测试baichuan2-7b;更新相关文档
    
    * 新增特性:1.支持vllm推理加速框架;2. 更新支持模型列表
    
    * 更新文件:1. startup,model_config.py.example,serve_config.py.example,FAQ
    
    * 1. debug vllm加速框架完毕;2. 修改requirements,requirements_api对vllm的依赖;3.注释掉serve_config中baichuan-7b的device为cpu的配置
    
    * 1. 更新congif中关于vllm后端相关说明;2. 更新requirements,requirements_api;
    
    * 增加了仅限GPT4的agent功能,陆续补充,中文版readme已写 (chatchat-space#1611)
    
    * Dev (chatchat-space#1613)
    
    * 增加了仅限GPT4的agent功能,陆续补充,中文版readme已写
    
    * issue提到的一个bug
    
    * 温度最小改成0,但是不应该支持负数
    
    * 修改了最小的温度
    
    * fix: set vllm based on platform to avoid error on windows
    
    * fix: langchain warnings for import from root
    
    * 修复webui中重建知识库以及对话界面UI错误 (chatchat-space#1615)
    
    * 修复bug:webui点重建知识库时,如果存在不支持的文件会导致整个接口错误;migrate中没有导入CHUNK_SIZE
    
    * 修复:webui对话界面的expander一直为running状态;简化历史消息获取方法
    
    * 根据官方文档,添加对英文版的bge embedding的指示模板 (chatchat-space#1585)
    
    Co-authored-by: zR <2448370773@qq.com>
    
    * Dev (chatchat-space#1618)
    
    * 增加了仅限GPT4的agent功能,陆续补充,中文版readme已写
    
    * issue提到的一个bug
    
    * 温度最小改成0,但是不应该支持负数
    
    * 修改了最小的温度
    
    * 增加了部分Agent支持和修改了启动文件的部分bug
    
    * 修改了GPU数量配置文件
    
    * 1
    
    1
    
    * 修复配置文件错误
    
    * 更新readme,稳定测试
    
    * 更改readme 0928 (chatchat-space#1619)
    
    * 增加了仅限GPT4的agent功能,陆续补充,中文版readme已写
    
    * issue提到的一个bug
    
    * 温度最小改成0,但是不应该支持负数
    
    * 修改了最小的温度
    
    * 增加了部分Agent支持和修改了启动文件的部分bug
    
    * 修改了GPU数量配置文件
    
    * 1
    
    1
    
    * 修复配置文件错误
    
    * 更新readme,稳定测试
    
    * 更新readme
    
    * fix readme
    
    * 处理序列化至磁盘的逻辑
    
    * update version number to v0.2.5
    
    ---------
    
    Co-authored-by: qiankunli <qiankun.li@qq.com>
    Co-authored-by: liqiankun.1111 <liqiankun.1111@bytedance.com>
    Co-authored-by: zR <2448370773@qq.com>
    Co-authored-by: glide-the <2533736852@qq.com>
    Co-authored-by: Water Zheng <1499383852@qq.com>
    Co-authored-by: Jim Zhang <dividi_z@163.com>
    Co-authored-by: Jim <zhangpengyi@taijihuabao.com>
    Co-authored-by: imClumsyPanda <littlepanda0716@gmail.com>
    Co-authored-by: Leego <leegodev@hotmail.com>
    Co-authored-by: hzg0601 <hzg0601@163.com>
    Co-authored-by: WilliamChen-luckbob <58684828+WilliamChen-luckbob@users.noreply.github.com>
    12 people committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    ba8d0f8 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2023

  1. Merge branch 'dev'

    zRzRzRzRzRzRzR committed Sep 29, 2023
    Configuration menu
    Copy the full SHA
    b077085 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b11d6ab View commit details
    Browse the repository at this point in the history
  3. fix: embedding_model_dict used for bge-* models (chatchat-space#1628)

    change to use `get_model_path`
    liunux4odoo committed Sep 29, 2023
    Configuration menu
    Copy the full SHA
    eb6f5cf View commit details
    Browse the repository at this point in the history
  4. 修改部分错误的文档,加长了历史记录(for 32k Models) (chatchat-space#1630)

    * 更新上agent提示词代码 (chatchat-space#1626)
    
    * 修改部分错误的文档,加长了历史记录(for 32k Models) (chatchat-space#1629)
    
    * 更新上agent提示词代码
    
    * 按需修改
    zRzRzRzRzRzRzR committed Sep 29, 2023
    Configuration menu
    Copy the full SHA
    e88d926 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2023

  1. Configuration menu
    Copy the full SHA
    a655608 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f30b4d5 View commit details
    Browse the repository at this point in the history
  3. Merge pull request chatchat-space#1653 from glide-the/master

    修复代理和transformers版本问题
    glide-the committed Oct 4, 2023
    Configuration menu
    Copy the full SHA
    db3efb3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    84a4141 View commit details
    Browse the repository at this point in the history
  5. Merge pull request chatchat-space#1654 from glide-the/master

    修复代理为空的问题
    glide-the committed Oct 4, 2023
    Configuration menu
    Copy the full SHA
    295783b View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2023

  1. 微信二维码

    glide-the committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    27f5e7d View commit details
    Browse the repository at this point in the history
  2. Update README.md

    glide-the committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    15fab6e View commit details
    Browse the repository at this point in the history
  3. Merge pull request chatchat-space#1706 from chatchat-space/glide-the-…

    …patch-2
    
    Update README.md
    glide-the committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    97c2126 View commit details
    Browse the repository at this point in the history
  4. Merge pull request chatchat-space#1705 from chatchat-space/glide-the-…

    …patch-1
    
    微信二维码
    glide-the committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    e9381f7 View commit details
    Browse the repository at this point in the history
  5. Update README.md

    glide-the committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    ff652f1 View commit details
    Browse the repository at this point in the history
  6. Merge pull request chatchat-space#1707 from chatchat-space/glide-the-…

    …patch-3
    
    Update README.md
    glide-the committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    21cf435 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2023

  1. update README.md

    imClumsyPanda committed Oct 10, 2023
    Configuration menu
    Copy the full SHA
    4578bc4 View commit details
    Browse the repository at this point in the history
  2. update README.md

    imClumsyPanda committed Oct 10, 2023
    Configuration menu
    Copy the full SHA
    bc5f846 View commit details
    Browse the repository at this point in the history
  3. update README.md

    imClumsyPanda committed Oct 10, 2023
    Configuration menu
    Copy the full SHA
    76e21c8 View commit details
    Browse the repository at this point in the history
  4. update README.md

    imClumsyPanda committed Oct 10, 2023
    Configuration menu
    Copy the full SHA
    c313f99 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2023

  1. Add files via upload

    imClumsyPanda committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    dfb3656 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    imClumsyPanda committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    68eb72e View commit details
    Browse the repository at this point in the history
  3. Update README.md

    imClumsyPanda committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    d35dbc7 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2023

  1. Update README.md

    imClumsyPanda committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    f4153be View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2023

  1. Add files via upload

    imClumsyPanda committed Oct 15, 2023
    Configuration menu
    Copy the full SHA
    70dd7c1 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    imClumsyPanda committed Oct 15, 2023
    Configuration menu
    Copy the full SHA
    9163dda View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2023

  1. Corrected the identifier "baichuan2-13b" in the configuration file

    Corrected the erroneous identifier "baichuan2-13b" in the configuration file.
    Halcao committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    4a4e00e View commit details
    Browse the repository at this point in the history