mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-27 16:33:49 +00:00

Co-authored-by: UUUUnotfound <31206589+UUUUnotfound@users.noreply.github.com> Co-authored-by: Hexiao Zhang <731931282qq@gmail.com> Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com>
21 lines
380 B
TypeScript
21 lines
380 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
|
|
};
|