mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-25 20:02:47 +00:00
Some checks failed
Build FastGPT images in Personal warehouse / build-fastgpt-images (push) Waiting to run
Deploy image by kubeconfig / build-fastgpt-docs-images (push) Has been cancelled
Deploy image to vercel / deploy-production (push) Has been cancelled
Sync images / sync (push) Has been cancelled
Deploy image by kubeconfig / update-docs-image (push) Has been cancelled
* feat: question guide * fix * fix * fix * change interface * fix
27 lines
479 B
TypeScript
27 lines
479 B
TypeScript
import { AppWhisperConfigType } from './type';
|
|
|
|
export enum AppTypeEnum {
|
|
simple = 'simple',
|
|
advanced = 'advanced'
|
|
}
|
|
export const AppTypeMap = {
|
|
[AppTypeEnum.simple]: {
|
|
label: 'simple'
|
|
},
|
|
[AppTypeEnum.advanced]: {
|
|
label: 'advanced'
|
|
}
|
|
};
|
|
|
|
export const defaultWhisperConfig: AppWhisperConfigType = {
|
|
open: false,
|
|
autoSend: false,
|
|
autoTTSResponse: false
|
|
};
|
|
|
|
export const defaultQuestionGuideTextConfig = {
|
|
open: false,
|
|
textList: [],
|
|
customURL: ''
|
|
};
|