Add ToggleSwitch component and QuillSense settings management

- 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.
This commit is contained in:
natreex
2026-01-13 19:53:35 -05:00
parent 306262caba
commit 707da73551
3 changed files with 193 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
export interface QuillSenseSettingsProps {
quillsenseEnabled: boolean;
advancedPrompt: string | null;
}