1- import { BookOpen , Brain , Contact , Database , FileTextIcon , HelpCircle , MessageSquare , Settings , Smile , Sparkles , Users } from "lucide-react" ;
1+ import { BookOpen , Contact , Database , FileTextIcon , HelpCircle , MessageSquare , Settings , Smile , Sparkles , Users } from "lucide-react" ;
22import React from "react" ;
33import WidgetChapters from "@/pages/chat/components/WidgetChapters" ;
44import WidgetCharacterSheet from "@/pages/chat/components/WidgetCharacterSheet" ;
55import WidgetConfig from "@/pages/chat/components/WidgetConfig" ;
66import WidgetDatabase from "@/pages/chat/components/WidgetDatabase" ;
77import WidgetGenerate from "@/pages/chat/components/WidgetGenerate" ;
8- import WidgetMemory from "@/pages/chat/components/WidgetMemory" ;
8+ // import WidgetMemory from "@/pages/chat/components/WidgetMemory";
99import WidgetMessages from "@/pages/chat/components/WidgetMessages" ;
1010import WidgetParticipants from "@/pages/chat/components/WidgetParticipants" ;
1111import WidgetScript from "@/pages/chat/components/WidgetScript" ;
@@ -14,7 +14,7 @@ import { WidgetHelp } from "../components/WidgetHelp";
1414
1515// Import types for props if available
1616
17- export type WidgetId = "messages" | "config" | "generate" | "participants" | "scripts" | "character_sheet" | "memory" | " database" | "chapters" | "expressions" | "help" ;
17+ export type WidgetId = "messages" | "config" | "generate" | "participants" | "scripts" | "character_sheet" | "database" | "chapters" | "expressions" | "help" ;
1818
1919export const widgetTitles : Record < WidgetId , string > = {
2020 messages : "Messages" ,
@@ -23,7 +23,7 @@ export const widgetTitles: Record<WidgetId, string> = {
2323 participants : "Participants" ,
2424 scripts : "Scripts" ,
2525 character_sheet : "Character Sheet" ,
26- memory : "Short-Term Memory" ,
26+ // memory: "Short-Term Memory",
2727 database : "Database" ,
2828 chapters : "Chapters" ,
2929 expressions : "Expressions" ,
@@ -82,13 +82,13 @@ export const widgetConfigurations: Record<WidgetId, WidgetConfiguration<any>> =
8282 defaultProps : { } ,
8383 icon : < Contact className = "w-4 h-4" /> ,
8484 } ,
85- memory : {
86- id : "memory" ,
87- title : widgetTitles . memory ,
88- component : WidgetMemory ,
89- defaultProps : { } ,
90- icon : < Brain className = "w-4 h-4" /> ,
91- } ,
85+ // memory: {
86+ // id: "memory",
87+ // title: widgetTitles.memory,
88+ // component: WidgetMemory,
89+ // defaultProps: {},
90+ // icon: <Brain className="w-4 h-4" />,
91+ // },
9292 database : {
9393 id : "database" ,
9494 title : widgetTitles . database ,
0 commit comments