File tree Expand file tree Collapse file tree 6 files changed +8
-9
lines changed
docSite/content/zh-cn/docs Expand file tree Collapse file tree 6 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 65
65
- name : Build
66
66
run : cd docSite && hugo mod get -u github.com/colinwilson/lotusdocs@6d0568e && hugo -v --minify
67
67
68
+ - name : Test
69
+ run : ls ./docSite/public
70
+
68
71
# Step 5 - Push our generated site to Cloudflare
69
72
- name : Deploy to Cloudflare Pages
70
73
id : deploy
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ toc: true
7
7
weight : -10
8
8
---
9
9
10
- FastGPT 是一个基于 LLM 大语言模型的知识库问答系统 ,提供开箱即用的数据处理、模型调用等能力。 同时可以通过 Flow 可视化进行工作流编排,从而实现复杂的问答场景!
10
+ FastGPT 是一个AI Agent 构建平台 ,提供开箱即用的数据处理、模型调用等能力, 同时可以通过 Flow 可视化进行工作流编排,从而实现复杂的应用场景!t
11
11
12
12
{{% alert icon="🤖 " context="success" %}}
13
13
FastGPT 在线使用:[ https://tryfastgpt.ai ] ( https://tryfastgpt.ai )
Original file line number Diff line number Diff line change 1
- import { connectionMongo , getMongoModel } from '../../mongo' ;
2
- const { Schema } = connectionMongo ;
1
+ import { getMongoModel , Schema } from '../../mongo' ;
3
2
import { RawTextBufferSchemaType } from './type' ;
4
3
5
4
export const collectionName = 'buffer_rawtexts' ;
Original file line number Diff line number Diff line change 1
- import { connectionMongo , getMongoModel , type Model } from '../../../common/mongo' ;
2
- const { Schema, model, models } = connectionMongo ;
1
+ import { Schema , getMongoModel } from '../../../common/mongo' ;
3
2
import { TTSBufferSchemaType } from './type.d' ;
4
3
5
4
export const collectionName = 'buffer_tts' ;
Original file line number Diff line number Diff line change 1
- import { connectionMongo , getMongoModel , type Model } from '../../mongo' ;
2
- const { Schema } = connectionMongo ;
1
+ import { Schema , getMongoModel } from '../../mongo' ;
3
2
4
3
const DatasetFileSchema = new Schema ( { } ) ;
5
4
const ChatFileSchema = new Schema ( { } ) ;
Original file line number Diff line number Diff line change 1
1
import { TeamCollectionName } from '@fastgpt/global/support/user/team/constant' ;
2
- import { connectionMongo , getMongoModel } from '../../mongo' ;
2
+ import { Schema , getMongoModel } from '../../mongo' ;
3
3
import { MongoImageSchemaType } from '@fastgpt/global/common/file/image/type.d' ;
4
- const { Schema } = connectionMongo ;
5
4
6
5
const ImageSchema = new Schema ( {
7
6
teamId : {
You can’t perform that action at this time.
0 commit comments