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: ''
|
|
};
|