Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
赵月辉
/
fastgpt-migrated
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Unverified
Commit
7408db9c
authored
May 18, 2023
by
archer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs
parent
5d4dd4a1
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
11 additions
and
8 deletions
+11
-8
README.md
+2
-2
docs/deploy/fastgpt/pg/init.sql
+5
-2
docs/imgs/wx300.jpg
+0
-0
public/docs/chatProblem.md
+1
-1
public/docs/intro.md
+2
-2
public/imgs/wx300.jpg
+0
-0
src/components/WxConcat/index.tsx
+1
-1
No files found.
README.md
View file @
7408db9c
...
...
@@ -29,8 +29,8 @@ Fast GPT 允许你使用自己的 openai API KEY 来快速的调用 openai 接
## 🏘️ 交流群
wx: fastgpt123

添加 wx 进入:

## 👀 其他
...
...
docs/deploy/fastgpt/pg/init.sql
View file @
7408db9c
...
...
@@ -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
\ No newline at end of file
docs/imgs/wx300.jpg
deleted
100644 → 0
View file @
5d4dd4a1
53.1 KB
public/docs/chatProblem.md
View file @
7408db9c
...
...
@@ -24,4 +24,4 @@
请 WX 联系: fastgpt123
| 交流群 | 小助手 |
| ----------------------- | -------------------- |
| !
[
](
/imgs/wxqun300.jpg) | 
|
| !
[
](
https://otnvvf-imgs.oss.laf.run/wxqun300.jpg) | 
|
public/docs/intro.md
View file @
7408db9c
...
...
@@ -30,5 +30,5 @@ FastGpt 项目完全开源,可随意私有化部署,去除平台风险忧虑
wx 号: fastgpt123
| 交流群 | 小助手 |
| -----------------------
|
-------------------- |
| !
[
](
/imgs/wxqun300.jpg) | 
|
| -----------------------
-------------------------- | --------------------------
-------------------- |
| !
[
](
https://otnvvf-imgs.oss.laf.run/wxqun300.jpg) | 
|
public/imgs/wx300.jpg
deleted
100644 → 0
View file @
5d4dd4a1
53.1 KB
src/components/WxConcat/index.tsx
View file @
7408db9c
...
...
@@ -23,7 +23,7 @@ const WxConcat = ({ onClose }: { onClose: () => void }) => {
<
ModalBody
textAlign=
{
'center'
}
>
<
Image
style=
{
{
margin
:
'auto'
}
}
src=
{
'
/imgs/wx300.jp
g'
}
src=
{
'
https://otnvvf-imgs.oss.laf.run/wx300.pn
g'
}
width=
{
'200px'
}
height=
{
'200px'
}
alt=
""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment