Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
c121914yu committed Aug 31, 2023
1 parent b22c878 commit c1f4785
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 28 deletions.
17 changes: 10 additions & 7 deletions docSite/content/docs/custom-models/chatglm2-m3e.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,28 @@ description: ' 将 FastGPT 接入私有化模型 ChatGLM2和m3e-large'
icon: 'model_training'
draft: false
toc: true
weight: 100
weight: 200
---

## 前言

FastGPT 默认使用了 openai 的 LLM模型和向量模型,如果想要私有化部署的话,可以使用 ChatGLM2 和 m3e-large 模型。以下是由用户@不做了睡大觉 提供的接入方法。
FastGPT 默认使用了 openai 的 LLM 模型和向量模型,如果想要私有化部署的话,可以使用 ChatGLM2 和 m3e-large 模型。以下是由用户@不做了睡大觉 提供的接入方法。该镜像直接集成了 M3E-Large 和 ChatGLM2-6B 模型,可以直接使用

## 部署镜像

镜像名: `stawky/chatglm2-m3e:latest`
国内镜像名: `registry.cn-hangzhou.aliyuncs.com/fastgpt/chatglm2-m3e:latest`
端口号: 6006
镜像默认sk-key: `sk-aaabbbcccdddeeefffggghhhiiijjjkkk`
镜像默认 sk-key: `sk-aaabbbcccdddeeefffggghhhiiijjjkkk`

## 接入 OneAPI

为chatglm2和m3e-large各添加一个渠道,参数如下:
为 chatglm2 和 m3e-large 各添加一个渠道,参数如下:

![](/imgs/model-m3e1.png)

这里我填入m3e作为向量模型,chatglm2作为语言模型
这里我填入 m3e 作为向量模型,chatglm2 作为语言模型

## 测试

curl 例子:
Expand Down Expand Up @@ -53,7 +54,7 @@ Authorization 为 sk-aaabbbcccdddeeefffggghhhiiijjjkkk。model 为刚刚在 OneA

## 接入 FastGPT

修改 config.json 配置文件,在 VectorModels 中加入 chatglm2和M3E 模型:
修改 config.json 配置文件,在 VectorModels 中加入 chatglm2 和 M3E 模型:

```json
"ChatModels": [
Expand Down Expand Up @@ -88,7 +89,9 @@ Authorization 为 sk-aaabbbcccdddeeefffggghhhiiijjjkkk。model 为刚刚在 OneA
```

## 测试使用

M3E 模型的使用方法如下:

1. 创建知识库时候选择 M3E 模型。

注意,一旦选择后,知识库将无法修改向量模型。
Expand All @@ -107,4 +110,4 @@ M3E 模型的使用方法如下:
![](/imgs/model-m3e4.png)

chatglm2 模型的使用方法如下:
模型选择chatglm2即可
模型选择 chatglm2 即可
33 changes: 13 additions & 20 deletions docSite/content/docs/custom-models/chatglm2.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: ' 将 FastGPT 接入私有化模型 ChatGLM2-6B'
icon: 'model_training'
draft: false
toc: true
weight: 753
weight: 100
---

## 前言
Expand Down Expand Up @@ -35,13 +35,15 @@ ChatGLM2-6B 是开源中英双语对话模型 ChatGLM-6B 的第二代版本,
| int4 | >=16GB | >=6GB | >=25GB | python openai_api.py 4 |
{{< /table >}}

## 环境配置
## 部署

### 环境要求

- Python 3.8.10
- CUDA 11.8
- 科学上网环境

## 部署步骤
### 源码部署

1. 根据上面的环境配置配置好环境,具体教程自行 GPT;
2. 下载 [python 文件](https://github.com/labring/FastGPT/blob/main/files/models/ChatGLM2/openai_api.py)
Expand All @@ -57,31 +59,23 @@ ChatGLM2-6B 是开源中英双语对话模型 ChatGLM-6B 的第二代版本,

> 这里的 `http://0.0.0.0:6006` 就是连接地址。
然后现在回到 .env.local 文件,依照以下方式配置地址:

```bash
OPENAI_BASE_URL=http://127.0.0.1:6006/v1
CHAT_API_KEY=sk-aaabbbcccdddeeefffggghhhiiijjjkkk # 这里是你在代码中配置的 token,这里的 OPENAIKEY 可以任意填写
```

这样就成功接入 ChatGLM2-6B 了。

## docker 部署
### docker 部署

## 部署镜像
**镜像和端口**

镜像名: `stawky/chatglm2:latest`
国内镜像名: `registry.cn-hangzhou.aliyuncs.com/fastgpt/chatglm2:latest`
端口号: 6006
镜像默认sk-key: `sk-aaabbbcccdddeeefffggghhhiiijjjkkk`
镜像默认 sk-key: `sk-aaabbbcccdddeeefffggghhhiiijjjkkk`

## 接入 OneAPI

为chatglm2添加一个渠道,参数如下:
为 chatglm2 添加一个渠道,参数如下:

![](/imgs/model-m3e1.png)

这里我填入chatglm2作为语言模型
这里我填入 chatglm2 作为语言模型

## 测试

curl 例子:
Expand All @@ -100,7 +94,7 @@ Authorization 为 sk-aaabbbcccdddeeefffggghhhiiijjjkkk。model 为刚刚在 OneA

## 接入 FastGPT

修改 config.json 配置文件,在 VectorModels 中加入 chatglm2和M3E 模型:
修改 config.json 配置文件,在 VectorModels 中加入 chatglm2 和 M3E 模型:

```json
"ChatModels": [
Expand All @@ -120,5 +114,4 @@ Authorization 为 sk-aaabbbcccdddeeefffggghhhiiijjjkkk。model 为刚刚在 OneA
## 测试使用

chatglm2 模型的使用方法如下:
模型选择chatglm2即可

模型选择 chatglm2 即可
2 changes: 1 addition & 1 deletion docSite/content/docs/custom-models/m3e.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ weight: 100

## 前言

FastGPT 默认使用了 openai 的 embedding 向量模型,如果你想私有部署的话,可以使用 M3E 向量模型进行替换。M3E 向量模型属于小模型,资源使用不高,CPU 也可以运行。下面教程是基于 “睡大觉” 同学提供的一个 CPU 版本的镜像
FastGPT 默认使用了 openai 的 embedding 向量模型,如果你想私有部署的话,可以使用 M3E 向量模型进行替换。M3E 向量模型属于小模型,资源使用不高,CPU 也可以运行。下面教程是基于 “睡大觉” 同学提供的一个的镜像

## 部署镜像

Expand Down

0 comments on commit c1f4785

Please sign in to comment.