Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
c121914yu committed May 18, 2023
1 parent 5d4dd4a commit 7408db9
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ Fast GPT 允许你使用自己的 openai API KEY 来快速的调用 openai 接

## 🏘️ 交流群

wx: fastgpt123
![Demo](docs/imgs/wx300.jpg?raw=true 'wx')
添加 wx 进入:
![Demo](https://otnvvf-imgs.oss.laf.run/wx300.png?raw=true 'wx')

## 👀 其他

Expand Down
6 changes: 4 additions & 2 deletions docs/deploy/fastgpt/pg/init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ CREATE TABLE modelData (
vector VECTOR(1536),
status VARCHAR(50) NOT NULL,
user_id VARCHAR(50) NOT NULL,
model_id VARCHAR(50) NOT NULL,
model_id VARCHAR(50),
kb_id VARCHAR(50),
q TEXT NOT NULL,
a TEXT NOT NULL
);
-- create index
CREATE INDEX modelData_status_index ON modelData USING HASH (status);
CREATE INDEX modelData_userId_index ON modelData USING HASH (user_id);
CREATE INDEX modelData_modelId_index ON modelData USING HASH (model_id);
CREATE INDEX modelData_userId_index ON modelData USING HASH (model_id);
CREATE INDEX modelData_kbId_index ON modelData USING HASH (kb_id);
EOSQL
Binary file removed docs/imgs/wx300.jpg
Binary file not shown.
2 changes: 1 addition & 1 deletion public/docs/chatProblem.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
请 WX 联系: fastgpt123
| 交流群 | 小助手 |
| ----------------------- | -------------------- |
| ![](/imgs/wxqun300.jpg) | ![](/imgs/wx300.jpg) |
| ![](https://otnvvf-imgs.oss.laf.run/wxqun300.jpg) | ![](https://otnvvf-imgs.oss.laf.run/wx300.png) |
6 changes: 3 additions & 3 deletions public/docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ FastGpt 项目完全开源,可随意私有化部署,去除平台风险忧虑
如果群满了,可加个小助手,定时拉
wx 号: fastgpt123

| 交流群 | 小助手 |
| ----------------------- | -------------------- |
| ![](/imgs/wxqun300.jpg) | ![](/imgs/wx300.jpg) |
| 交流群 | 小助手 |
| ------------------------------------------------- | ---------------------------------------------- |
| ![](https://otnvvf-imgs.oss.laf.run/wxqun300.jpg) | ![](https://otnvvf-imgs.oss.laf.run/wx300.png) |
Binary file removed public/imgs/wx300.jpg
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/WxConcat/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const WxConcat = ({ onClose }: { onClose: () => void }) => {
<ModalBody textAlign={'center'}>
<Image
style={{ margin: 'auto' }}
src={'/imgs/wx300.jpg'}
src={'https://otnvvf-imgs.oss.laf.run/wx300.png'}
width={'200px'}
height={'200px'}
alt=""
Expand Down

0 comments on commit 7408db9

Please sign in to comment.