export interface DyNTS_DiAs_Global_Settings { defaultSystemPrompt: string; /** * These flags are used to skip messages from the conversation * so these messages will not be included in the conversation for the LLM call * * default: [ '|NOISE]', '[VOICE|USER|OUTOFCONTEXT]', '[DEBUG|' ] */ skipConversationMessagesFlags: string[]; /** * These flags are used to identify messages that are sent by the bot, but comes from the user * so these messages will appear as user messages in the conversation for the LLM call * * default: [ '[VOICE|USER' ] */ userTranslationFlags: string[]; }