- Added `ToggleSwitch` component for handling toggles with labels, descriptions, and disabled states. - Introduced `QuillSenseSetting` component for managing QuillSense enablement and advanced prompt settings. - Integrated `QuillSenseSettings` model and API calls for fetching and updating settings.
5 lines
116 B
TypeScript
5 lines
116 B
TypeScript
export interface QuillSenseSettingsProps {
|
|
quillsenseEnabled: boolean;
|
|
advancedPrompt: string | null;
|
|
}
|