feat(ui): LLMConfig panel + route (/realism-llm) + nav entry

This commit is contained in:
2026-05-09 23:15:27 -04:00
parent 41b8e9b7b3
commit c66749209f
5 changed files with 461 additions and 0 deletions

View File

@@ -28,6 +28,7 @@ const Orchestrator = lazy(() => import('./components/Orchestrator'));
const PersonaGeneration = lazy(() => import('./components/PersonaGeneration'));
const SyntheticFiles = lazy(() => import('./components/SyntheticFiles/SyntheticFiles'));
const RealismConfig = lazy(() => import('./components/RealismConfig/RealismConfig'));
const LLMConfig = lazy(() => import('./components/LLMConfig/LLMConfig'));
const CanaryTokens = lazy(() => import('./components/CanaryTokens'));
const TopologyPersonaGeneration = lazy(() =>
import('./components/PersonaGeneration').then((m) => ({ default: m.TopologyPersonaGeneration })),
@@ -138,6 +139,7 @@ const AuthedShell: React.FC<AuthedShellProps> = ({ onLogout, onSearch, searchQue
<Route path="/persona-generation" element={<PersonaGeneration />} />
<Route path="/synthetic-files" element={<SyntheticFiles />} />
<Route path="/realism-config" element={<RealismConfig />} />
<Route path="/realism-llm" element={<LLMConfig />} />
<Route path="/canary-tokens" element={<CanaryTokens />} />
<Route path="/topologies/:id/personas" element={<TopologyPersonaGeneration />} />
<Route path="/config" element={<Config />} />