/
GreyCat
/
openhuman
Обзор
Документация
Войти
/
GreyCat
/
openhuman
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
app/src/components/intelligence/MemorySection.tsx
22 строки
918 B
Cyrus Gray
feat(intelligence): strip Memory tab to core view, hide analysis sub-pills (#3397)
05 июн 2026, 15:15
Не верифицирован
05 июн 2026, 15:15
5d2a4f9
Код
Авторство
О чём код?
import type { ToastNotification } from '../../types/intelligence'; import { MemoryWorkspace } from './MemoryWorkspace'; /** * Memory tab body. * * Renders the core memory experience (`MemoryWorkspace` — sources registry, * tree-status panel, and summary graph) directly, with no sub-pill/tab bar. * * The internal graph/memory-analysis surfaces (Diagram, Centrality, Cohesion, * Associations, Freshness, Timeline, Paths, Namespaces) are developer/analysis * views that cluttered the experience and are intentionally no longer reachable * from this tab. Their components are retained on disk (and still unit-tested) * so they can be restored behind a dedicated surface later if needed. */ interface MemorySectionProps { onToast: (toast: Omit<ToastNotification, 'id'>) => void; } export default function MemorySection({ onToast }: MemorySectionProps) { return <MemoryWorkspace onToast={onToast} />; }