refactor(ui): move LLM provider config into Config tab, remove standalone route

This commit is contained in:
2026-05-09 23:20:11 -04:00
parent c66749209f
commit 39eb1ce5db
9 changed files with 342 additions and 469 deletions

View File

@@ -28,7 +28,6 @@ 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 })),
@@ -139,7 +138,6 @@ 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 />} />