mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-01 08:13:37 +00:00
- Introduced a new MemoryView component for viewing and editing AI memory files. - Updated navigation hooks and keyboard shortcuts to include memory functionality. - Added memory file creation, deletion, and renaming capabilities. - Enhanced the sidebar navigation to support memory as a new section. - Implemented loading and saving of memory files with a markdown editor. - Integrated dialogs for creating, deleting, and renaming memory files.
7 lines
199 B
TypeScript
7 lines
199 B
TypeScript
import { createFileRoute } from '@tanstack/react-router';
|
|
import { MemoryView } from '@/components/views/memory-view';
|
|
|
|
export const Route = createFileRoute('/memory')({
|
|
component: MemoryView,
|
|
});
|