mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-18 21:22:28 +03:00
* feat(responses): virtualize previous_response_id continuation regardless of upstream support OmniRoute now exposes OpenAI-compatible previous_response_id/store continuation to clients unconditionally, even when the selected upstream provider has no native Responses-API state support. Reconstruction happens server-side in handleChatImplementation, before any downstream validation or provider translation: OmniRoute resolves the response id back to the full input/output it previously produced, prepends it to the client's delta, and forwards the full reconstructed history upstream exactly as it does today. Client<->OmniRoute traffic shrinks to the new delta only; OmniRoute<->provider traffic is unchanged. Storage reuses the existing call-log pipeline artifact (already gated by call_log_pipeline_enabled, already retained/cleaned up by the existing call-log lifecycle) instead of duplicating conversation content into a second store -- only a lightweight call_logs.response_id index is new. Every lookup is scoped by api_key_id so one client can never resolve another client's stored conversation, and any unresolvable/missing/ size-limit-omitted state fails closed with OpenAI's own previous_response_not_found contract. Stacked on feat/openai-responses-store-toggle (#10121). * feat(dashboard): agentic conversation tracking with live transcript view Every agentic chat request now gets a conversation id (X-ConversationId response header). OmniRoute detects when a follow-up request continues the same conversation via fingerprint + bounded prefix-hash matching, with a strict-growth invariant to prevent false merges between independent single-shot requests that happen to share identical opening content. Continuation detection excludes the system message from the identity anchor, since real coding-agent CLIs commonly regenerate it every request with live context (timestamp, cwd, git status) — without this, that volatility alone broke every continuation check against real traffic. - `/dashboard/logs`: new toggleable Conversation column. - `/dashboard/logs/timeline`: requests sharing a conversation id share a timeline lane, connected by an arrow, with a configurable lane-reuse window. - Request detail panel: new Full Conversation transcript above the raw SSE event stream — Markdown rendering, per-turn timestamps, turn-relative view, click-any-turn navigation, live auto-refresh building the transcript in real time from the in-flight SSE chunk buffer while a request is still streaming, auto-scroll-to-bottom as the live turn grows. - New `/dashboard/conversations` page listing conversations with 2+ turns, no-forking model (an edited/duplicated mid-history turn mints its own independent conversation instead of merging), pagination, duplicate- anchor fix. - Configurable auto-refresh intervals on both the timeline and conversations list pages. - Responses API tool-call gap fix: turnsFromOpenAiMessages only handled role-based Chat Completions messages, so bare {type:"function_call"} / {type:"function_call_output"} / {type:"reasoning"} items (real Responses API traffic) silently vanished from the Conversation Context panel. - truncateForLog now counts input[] (Responses API), not just messages[] (Chat Completions), so a truncated /v1/responses request still shows a placeholder instead of nothing. - RequestTimeline.tsx now reads the same debugEnabled/emailsVisible settings RequestLoggerV2.tsx already used, instead of hardcoding both false — the timeline view never showed SSE/stream-chunk events or respected email-masking, regardless of the actual setting. Migrations 147/148 (agentic_conversations, conversation_turn_nodes) — 135 and 136 are now taken upstream; 143-145 are documented KNOWN_GAPS, so this uses the next free slot past upstream's current highest. Test plan: - npm run typecheck:core — clean - npm run lint — clean - node --import tsx/esm scripts/check/check-migration-numbering.mjs — OK, 0 collisions - 109 unit tests across the conversation-tracking, migration-renumber, and dashboard-wiring surface — 0 failures * refactor(dashboard): reuse call-log artifacts for conversation transcript content conversation_turn_nodes no longer stores turn text/tool-call content (text_preview/block_kind/tool_name) -- it's identity-only now (id/parent/ content_hash), matching agentic_conversations' existing lightweight-index shape. Every node's originating request is already fully captured by the call-log pipeline artifact its last_correlation_id points at, so the /dashboard/conversations tree view resolves each node's actual display content on demand from there (open-sse/services/conversationTurnContent.ts), re-running the same extractCanonicalTurns/hashTurnContent the write path used and matching by content_hash, instead of duplicating conversation content into a second store under a separate retention/gating policy. This also drops the old 8000-char text_preview truncation entirely -- resolved content is always full and untruncated. The frontend contract is unchanged (tree API still returns {textPreview, blockKind, toolName} per node), so the dashboard UI itself (page.tsx, RequestLoggerDetail/RequestTimeline, sidebar, i18n) needed no changes. Renumbered the cherry-picked 147/148 migrations to 153/154 -- 147 now collides with 147_api_keys_model_access_mode.sql, which landed on release/v3.8.50 after this work was originally built. Also includes a standalone, unrelated fix carried along from this rebase: close isProviderModelHidden's missing function-body brace in modelSelectModalHelpers.ts (separately landed as #10206). Stacked on feat/responses-previous-response-id-virtualization (#3), which is itself stacked on feat/openai-responses-store-toggle (#10121). * fix(dashboard): resync conversation list on open so the live-text poll starts immediately openConversation() seeded activeConversation (and therefore activeCallLogId, which gates the live-partial-text poll effect) from whatever row snapshot the list's own fixed-interval poll last produced. A conversation opened right after a reply started streaming -- after that tick, before the next -- had activeCallLogId still null, so the live-text poll never started; only a subsequent background list-poll resync (already existed) picked it up, which is why closing and reopening the same conversation "just worked". loadConversations() is now a shared callback so openConversation can force one immediately on open instead of waiting on pollSeconds. Live-verified against omniroute-dev: opening a conversation mid-stream now shows live reasoning on the first open. * style: prettier formatting for conversationTurnContent.test.ts * fix(db): close migration numbering gap left by decoupling from #3/#10262 153/154 (originally 154/155) were chosen back when this branch stacked on top of the previous_response_id migration (153_call_logs_response_id.sql). Decoupling removed that migration from this branch's history, leaving an unused 153 slot that check-migration-numbering.test.ts correctly flags as a gap. * refactor(dashboard): split RequestTimeline/RequestLoggerDetail under the 1000-line file-size cap Both files exceeded check-file-size's new-file cap after this PR's own additions (RequestTimeline 1048, RequestLoggerDetail 1163). Extracted pure non-component logic (types, constants, allocateLanes and its helpers) out of RequestTimeline.tsx into RequestTimeline.utils.ts, and the two self-contained presentational sub-components (PayloadSection, ConversationContextSection + its private helper) out of RequestLoggerDetail.tsx into RequestLoggerDetail.sections.tsx. No behavior change; existing external imports (default exports, allocateLanes, TimelineLog, CONVERSATION_LANE_REUSE_STORAGE_KEY) still resolve from the original file paths. * fix(db): renumber agentic-conversation migrations to clear 153 collision + sync migration-count docs The refresh-merge of release/v3.8.50 exposed that the feature's three migrations collided at slot 153 with the base's radar_local_model_state (153) and its own call_logs_response_id. Migration runner enforces unique numeric prefixes -> every DB init threw, red-ing Vitest, all Unit shards and the DB-backed quality gates. Renumber the feature's pair to 155_agentic_conversations / 156_conversation_turn_nodes and move call_logs_response_id to 154 (keeps 153_radar base-owned, preserves agentic-before-turn_nodes ordering). Update SQL headers and the 154/156 references in feature code + tests. Migration count is now 151 (was 148 stale in README/AGENTS/llm.txt) — sync the doc counts to clear the docs-accuracy gate. Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * fix(ui): drop unused CONVERSATION_LANE_REUSE_STORAGE_KEY re-export from RequestTimeline Knip 6.32 (baseline 415) flags the public re-export of CONVERSATION_LANE_REUSE_STORAGE_KEY from RequestTimeline.tsx as dead: no external consumer imports it through that re-export (it is imported and used directly from RequestTimeline.utils.ts inside the component). Removed the unused re-export; the internal import stays. DEAD_TOTAL 416 -> 415, back to the frozen baseline. Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> * fix(agentic-conversations): guard resolveConversationId, drop dead whole-chain export - Wrap resolveConversationId() in try/catch in chat.ts, matching the defensive pattern used by every other best-effort side call nearby, so a DB hiccup in conversation tracking can't turn a working chat request into a hard failure. - Remove getConversationTurnTree: knip's project scope excludes tests/**, so an export used only by tests can never register as used there. Swap its 8 test call sites to the paginated getConversationTurnPage (already the dashboard's canonical query) with a generous limit, collapsing to one query path instead of keeping a second whole-chain export alive solely for test convenience. - Regenerate i18n llm.txt mirrors from root (pre-existing drift on this branch, unrelated to the above, caught by the docs-sync pre-commit gate). Addresses PR review feedback. * fix(i18n): close requestLogger conversation-column gap, fix domain-modules count drift - fr.json, vi.json were missing requestLogger.columns.conversation (added in the conversation-tracking feature), failing i18n-vi-completeness.test.ts. - docs/i18n/*/llm.txt mirrors still said 117 domain-specific files after an earlier rebase fixed the migration count but missed this companion number, failing check-docs-sync.mjs across all 42 locales. Co-authored-by: diegosouzapw <8016841+diegosouzapw@users.noreply.github.com> * fix(docs): restore PROXY_LOG_INCLUDE_IPS env/doc entries (env-doc-sync red) .env.example and docs/reference/ENVIRONMENT.md were both missing the PROXY_LOG_INCLUDE_IPS entry that src/lib/proxyLogger.ts already reads (confirmed present at this branch's merge-base too, so this predates the conversation-tracking work and is unrelated to it) -- the entry was added on release/v3.8.50 after this branch's last sync and this branch never picked it up. That gap red-lines tests/unit/check-env-doc-sync.test.ts and tests/unit/issue-7793-env-doc-sync-repro.test.ts (Unit Tests fast-path 2/4 in CI). Restore both entries verbatim from the current release/v3.8.50 tip -- no feature-code change. Co-authored-by: diegosouzapw <8016841+diegosouzapw@users.noreply.github.com> --------- Co-authored-by: hartmark <hartmark@users.noreply.github.com> Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com> Co-authored-by: diegosouzapw <8016841+diegosouzapw@users.noreply.github.com>
858 lines
20 KiB
TypeScript
858 lines
20 KiB
TypeScript
import type {
|
|
SidebarItemDefinition,
|
|
SidebarItemGroup,
|
|
SidebarSectionChild,
|
|
SidebarSectionDefinition,
|
|
} from "./types";
|
|
|
|
// ─── Item arrays ────────────────────────────────────────────────────────────
|
|
|
|
const HOME_ITEMS: readonly SidebarItemDefinition[] = [
|
|
{
|
|
id: "home",
|
|
href: "/home",
|
|
i18nKey: "home",
|
|
subtitleKey: "homeSubtitle",
|
|
icon: "home",
|
|
exact: true,
|
|
},
|
|
];
|
|
|
|
const OMNI_PROXY_ITEMS: readonly SidebarItemDefinition[] = [
|
|
{
|
|
id: "endpoints",
|
|
href: "/dashboard/endpoint",
|
|
i18nKey: "endpoints",
|
|
subtitleKey: "endpointsSubtitle",
|
|
icon: "api",
|
|
},
|
|
{
|
|
id: "api-manager",
|
|
href: "/dashboard/api-manager",
|
|
i18nKey: "apiManager",
|
|
subtitleKey: "apiManagerSubtitle",
|
|
icon: "vpn_key",
|
|
},
|
|
{
|
|
id: "providers",
|
|
href: "/dashboard/providers",
|
|
i18nKey: "providers",
|
|
subtitleKey: "providersSubtitle",
|
|
icon: "dns",
|
|
},
|
|
{
|
|
id: "embedded-services",
|
|
href: "/dashboard/providers/services",
|
|
i18nKey: "embeddedServices",
|
|
subtitleKey: "embeddedServicesSubtitle",
|
|
icon: "deployed_code",
|
|
},
|
|
{
|
|
id: "combos",
|
|
href: "/dashboard/combos",
|
|
i18nKey: "combos",
|
|
subtitleKey: "combosSubtitle",
|
|
icon: "layers",
|
|
},
|
|
{
|
|
id: "combos-live",
|
|
href: "/dashboard/combos/live",
|
|
i18nKey: "combosLive",
|
|
labelFallback: "Combo Studio",
|
|
subtitleKey: "combosLiveSubtitle",
|
|
subtitleFallback: "Live routing cascade",
|
|
icon: "account_tree",
|
|
},
|
|
{
|
|
id: "quota",
|
|
href: "/dashboard/quota",
|
|
i18nKey: "providerQuota",
|
|
subtitleKey: "providerQuotaSubtitle",
|
|
icon: "tune",
|
|
},
|
|
{
|
|
id: "costs-quota-share",
|
|
href: "/dashboard/costs/quota-share",
|
|
i18nKey: "costsQuotaShare",
|
|
subtitleKey: "costsQuotaShareSubtitle",
|
|
icon: "pie_chart",
|
|
},
|
|
];
|
|
|
|
export const COMPRESSION_CONTEXT_GROUP: SidebarItemGroup = {
|
|
type: "group",
|
|
id: "compression-context",
|
|
titleKey: "compressionContextGroup",
|
|
titleFallback: "Compression Context",
|
|
// Order: Settings (the unified panel) → Combos → per-engine pages → Studio (analytics).
|
|
items: [
|
|
{
|
|
id: "context-settings",
|
|
href: "/dashboard/context/settings",
|
|
i18nKey: "contextSettings",
|
|
labelFallback: "Compression Settings",
|
|
subtitleKey: "contextSettingsSubtitle",
|
|
subtitleFallback: "Global defaults",
|
|
icon: "settings",
|
|
},
|
|
{
|
|
id: "context-combos",
|
|
href: "/dashboard/context/combos",
|
|
i18nKey: "contextCombos",
|
|
subtitleKey: "contextCombosSubtitle",
|
|
icon: "hub",
|
|
},
|
|
{
|
|
id: "context-caveman",
|
|
href: "/dashboard/context/caveman",
|
|
i18nKey: "contextCaveman",
|
|
subtitleKey: "contextCavemanSubtitle",
|
|
icon: "compress",
|
|
},
|
|
{
|
|
id: "context-rtk",
|
|
href: "/dashboard/context/rtk",
|
|
i18nKey: "contextRtk",
|
|
subtitleKey: "contextRtkSubtitle",
|
|
icon: "filter_alt",
|
|
},
|
|
{
|
|
id: "context-headroom",
|
|
href: "/dashboard/context/headroom",
|
|
i18nKey: "contextHeadroom",
|
|
labelFallback: "Headroom",
|
|
subtitleKey: "contextHeadroomSubtitle",
|
|
subtitleFallback: "Tabular compaction",
|
|
icon: "table_rows",
|
|
},
|
|
{
|
|
id: "context-session-dedup",
|
|
href: "/dashboard/context/session-dedup",
|
|
i18nKey: "contextSessionDedup",
|
|
labelFallback: "Session Dedup",
|
|
subtitleKey: "contextSessionDedupSubtitle",
|
|
subtitleFallback: "Cross-turn dedup",
|
|
icon: "content_copy",
|
|
},
|
|
{
|
|
id: "context-ccr",
|
|
href: "/dashboard/context/ccr",
|
|
i18nKey: "contextCcr",
|
|
labelFallback: "CCR",
|
|
subtitleKey: "contextCcrSubtitle",
|
|
subtitleFallback: "Retrieve markers",
|
|
icon: "archive",
|
|
},
|
|
{
|
|
id: "context-llmlingua",
|
|
href: "/dashboard/context/llmlingua",
|
|
i18nKey: "contextLlmlingua",
|
|
labelFallback: "LLMLingua",
|
|
subtitleKey: "contextLlmlinguaSubtitle",
|
|
subtitleFallback: "Semantic pruning",
|
|
icon: "psychology",
|
|
},
|
|
{
|
|
id: "context-lite",
|
|
href: "/dashboard/context/lite",
|
|
i18nKey: "contextLite",
|
|
labelFallback: "Lite",
|
|
subtitleKey: "contextLiteSubtitle",
|
|
subtitleFallback: "Fast whitespace cleanup",
|
|
icon: "compress",
|
|
},
|
|
{
|
|
id: "context-aggressive",
|
|
href: "/dashboard/context/aggressive",
|
|
i18nKey: "contextAggressive",
|
|
labelFallback: "Aggressive",
|
|
subtitleKey: "contextAggressiveSubtitle",
|
|
subtitleFallback: "Summary + aging",
|
|
icon: "speed",
|
|
},
|
|
{
|
|
id: "context-ultra",
|
|
href: "/dashboard/context/ultra",
|
|
i18nKey: "contextUltra",
|
|
labelFallback: "Ultra",
|
|
subtitleKey: "contextUltraSubtitle",
|
|
subtitleFallback: "Heuristic pruning",
|
|
icon: "bolt",
|
|
},
|
|
{
|
|
id: "context-omniglyph",
|
|
href: "/dashboard/context/omniglyph",
|
|
i18nKey: "contextOmniglyph",
|
|
labelFallback: "OmniGlyph",
|
|
subtitleKey: "contextOmniglyphSubtitle",
|
|
subtitleFallback: "Context-as-image",
|
|
icon: "grain",
|
|
},
|
|
{
|
|
id: "compression-studio",
|
|
href: "/dashboard/compression/studio",
|
|
i18nKey: "compressionStudio",
|
|
labelFallback: "Compression Studio",
|
|
subtitleKey: "compressionStudioSubtitle",
|
|
subtitleFallback: "Live engine cascade",
|
|
icon: "monitoring",
|
|
},
|
|
{
|
|
id: "compression-exclusions",
|
|
href: "/dashboard/compression/exclusions",
|
|
i18nKey: "compressionExclusions",
|
|
labelFallback: "Exclusions",
|
|
subtitleKey: "compressionExclusionsSubtitle",
|
|
subtitleFallback: "Per-model/endpoint bypass",
|
|
icon: "block",
|
|
},
|
|
],
|
|
};
|
|
|
|
const TOOLS_GROUP: SidebarItemGroup = {
|
|
type: "group",
|
|
id: "tools",
|
|
titleKey: "toolsGroup",
|
|
titleFallback: "Tools",
|
|
items: [
|
|
{
|
|
id: "cli-code",
|
|
href: "/dashboard/cli-code",
|
|
i18nKey: "cliCode",
|
|
subtitleKey: "cliCodeSubtitle",
|
|
icon: "terminal",
|
|
},
|
|
{
|
|
id: "cli-agents",
|
|
href: "/dashboard/cli-agents",
|
|
i18nKey: "cliAgents",
|
|
subtitleKey: "cliAgentsSubtitle",
|
|
icon: "smart_toy",
|
|
},
|
|
{
|
|
id: "acp-agents",
|
|
href: "/dashboard/acp-agents",
|
|
i18nKey: "acpAgents",
|
|
subtitleKey: "acpAgentsSubtitle",
|
|
icon: "device_hub",
|
|
},
|
|
{
|
|
id: "cloud-agents",
|
|
href: "/dashboard/cloud-agents",
|
|
i18nKey: "cloudAgents",
|
|
subtitleKey: "cloudAgentsSubtitle",
|
|
icon: "cloud",
|
|
},
|
|
{
|
|
id: "conductor",
|
|
href: "/dashboard/conductor",
|
|
i18nKey: "conductor",
|
|
subtitleKey: "conductorSubtitle",
|
|
icon: "account_tree",
|
|
labelFallback: "Conductor",
|
|
subtitleFallback: "CLI-agent fleet",
|
|
},
|
|
{
|
|
id: "agent-bridge",
|
|
href: "/dashboard/tools/agent-bridge",
|
|
i18nKey: "agentBridge",
|
|
subtitleKey: "agentBridgeSubtitle",
|
|
icon: "link",
|
|
},
|
|
{
|
|
id: "traffic-inspector",
|
|
href: "/dashboard/tools/traffic-inspector",
|
|
i18nKey: "trafficInspector",
|
|
subtitleKey: "trafficInspectorSubtitle",
|
|
icon: "network_check",
|
|
},
|
|
{
|
|
id: "discovery",
|
|
href: "/dashboard/discovery",
|
|
i18nKey: "discovery",
|
|
subtitleKey: "discoverySubtitle",
|
|
icon: "travel_explore",
|
|
},
|
|
],
|
|
};
|
|
|
|
const INTEGRATIONS_GROUP: SidebarItemGroup = {
|
|
type: "group",
|
|
id: "integrations",
|
|
titleKey: "integrationsGroup",
|
|
titleFallback: "Integrations",
|
|
items: [
|
|
{
|
|
id: "api-endpoints",
|
|
href: "/dashboard/api-endpoints",
|
|
i18nKey: "apiEndpoints",
|
|
subtitleKey: "apiEndpointsSubtitle",
|
|
icon: "api",
|
|
},
|
|
{
|
|
id: "webhooks",
|
|
href: "/dashboard/webhooks",
|
|
i18nKey: "webhooks",
|
|
subtitleKey: "webhooksSubtitle",
|
|
icon: "webhook",
|
|
},
|
|
],
|
|
};
|
|
|
|
const PROXY_ITEM: SidebarItemDefinition = {
|
|
id: "proxy",
|
|
href: "/dashboard/system/proxy",
|
|
i18nKey: "proxy",
|
|
subtitleKey: "proxySubtitle",
|
|
icon: "dns",
|
|
};
|
|
|
|
const ANALYTICS_ITEMS: readonly SidebarItemDefinition[] = [
|
|
{
|
|
id: "analytics",
|
|
href: "/dashboard/analytics",
|
|
i18nKey: "usage",
|
|
subtitleKey: "usageSubtitle",
|
|
icon: "analytics",
|
|
},
|
|
{
|
|
id: "analytics-combo-health",
|
|
href: "/dashboard/analytics/combo-health",
|
|
i18nKey: "analyticsComboHealth",
|
|
subtitleKey: "analyticsComboHealthSubtitle",
|
|
icon: "monitor_heart",
|
|
},
|
|
{
|
|
id: "analytics-utilization",
|
|
href: "/dashboard/analytics/utilization",
|
|
i18nKey: "analyticsUtilization",
|
|
subtitleKey: "analyticsUtilizationSubtitle",
|
|
icon: "bar_chart",
|
|
},
|
|
{
|
|
id: "cache",
|
|
href: "/dashboard/cache",
|
|
i18nKey: "cache",
|
|
subtitleKey: "cacheSubtitle",
|
|
icon: "cached",
|
|
},
|
|
{
|
|
id: "analytics-compression",
|
|
href: "/dashboard/analytics/compression",
|
|
i18nKey: "analyticsCompression",
|
|
subtitleKey: "analyticsCompressionSubtitle",
|
|
icon: "compress",
|
|
},
|
|
{
|
|
id: "analytics-search",
|
|
href: "/dashboard/analytics/search",
|
|
i18nKey: "analyticsSearch",
|
|
subtitleKey: "analyticsSearchSubtitle",
|
|
icon: "manage_search",
|
|
},
|
|
{
|
|
id: "analytics-evals",
|
|
href: "/dashboard/analytics/evals",
|
|
i18nKey: "analyticsEvals",
|
|
subtitleKey: "analyticsEvalsSubtitle",
|
|
icon: "labs",
|
|
},
|
|
{
|
|
id: "provider-stats",
|
|
href: "/dashboard/provider-stats",
|
|
i18nKey: "providerStats",
|
|
subtitleKey: "providerStatsSubtitle",
|
|
icon: "speed",
|
|
},
|
|
];
|
|
|
|
const MONITORING_ITEMS: readonly SidebarItemDefinition[] = [
|
|
{
|
|
id: "activity",
|
|
href: "/dashboard/activity",
|
|
i18nKey: "activity",
|
|
subtitleKey: "activitySubtitle",
|
|
icon: "timeline",
|
|
},
|
|
];
|
|
|
|
const LOGS_GROUP: SidebarItemGroup = {
|
|
type: "group",
|
|
id: "logs",
|
|
titleKey: "logsGroup",
|
|
titleFallback: "Logs",
|
|
items: [
|
|
{
|
|
id: "logs",
|
|
href: "/dashboard/logs",
|
|
i18nKey: "logs",
|
|
subtitleKey: "logsSubtitle",
|
|
icon: "description",
|
|
},
|
|
{
|
|
id: "logs-proxy",
|
|
href: "/dashboard/logs/proxy",
|
|
i18nKey: "logsProxy",
|
|
subtitleKey: "logsProxySubtitle",
|
|
icon: "lan",
|
|
},
|
|
{
|
|
id: "logs-console",
|
|
href: "/dashboard/logs/console",
|
|
i18nKey: "consoleLogs",
|
|
subtitleKey: "consoleLogsSubtitle",
|
|
icon: "terminal",
|
|
},
|
|
{
|
|
id: "logs-timeline",
|
|
href: "/dashboard/logs/timeline",
|
|
i18nKey: "logsTimeline",
|
|
subtitleKey: "logsTimelineSubtitle",
|
|
icon: "view_timeline",
|
|
},
|
|
{
|
|
id: "conversations",
|
|
href: "/dashboard/conversations",
|
|
i18nKey: "conversations",
|
|
subtitleKey: "conversationsSubtitle",
|
|
icon: "forum",
|
|
},
|
|
],
|
|
};
|
|
|
|
const SYSTEM_GROUP: SidebarItemGroup = {
|
|
type: "group",
|
|
id: "system",
|
|
titleKey: "systemGroup",
|
|
titleFallback: "System",
|
|
items: [
|
|
{
|
|
id: "health",
|
|
href: "/dashboard/health",
|
|
i18nKey: "health",
|
|
subtitleKey: "healthSubtitle",
|
|
icon: "health_and_safety",
|
|
},
|
|
{
|
|
id: "runtime",
|
|
href: "/dashboard/runtime",
|
|
i18nKey: "runtime",
|
|
subtitleKey: "runtimeSubtitle",
|
|
icon: "bolt",
|
|
},
|
|
{
|
|
id: "resilience-connections",
|
|
href: "/dashboard/resilience/connections",
|
|
i18nKey: "resilienceConnections",
|
|
subtitleKey: "resilienceConnectionsSubtitle",
|
|
icon: "shield",
|
|
},
|
|
],
|
|
};
|
|
|
|
const COSTS_ITEMS: readonly SidebarItemDefinition[] = [
|
|
{
|
|
id: "costs",
|
|
href: "/dashboard/costs",
|
|
i18nKey: "costsOverview",
|
|
subtitleKey: "costsOverviewSubtitle",
|
|
icon: "account_balance_wallet",
|
|
},
|
|
{
|
|
id: "costs-pricing",
|
|
href: "/dashboard/costs/pricing",
|
|
i18nKey: "costsPricing",
|
|
subtitleKey: "costsPricingSubtitle",
|
|
icon: "price_change",
|
|
},
|
|
{
|
|
id: "costs-budget",
|
|
href: "/dashboard/costs/budget",
|
|
i18nKey: "costsBudget",
|
|
subtitleKey: "costsBudgetSubtitle",
|
|
icon: "savings",
|
|
},
|
|
{
|
|
id: "costs-free-tiers",
|
|
href: "/dashboard/free-tiers",
|
|
i18nKey: "costsFreeTiers",
|
|
subtitleKey: "costsFreeTiersSubtitle",
|
|
icon: "request_quote",
|
|
},
|
|
{
|
|
id: "free-provider-rankings",
|
|
href: "/dashboard/free-provider-rankings",
|
|
i18nKey: "freeProviderRankings",
|
|
subtitleKey: "freeProviderRankingsSubtitle",
|
|
icon: "leaderboard",
|
|
},
|
|
{
|
|
id: "radar",
|
|
href: "/dashboard/radar",
|
|
i18nKey: "radar",
|
|
subtitleKey: "radarSubtitle",
|
|
icon: "radar",
|
|
featureFlagKey: "RADAR_ENABLED",
|
|
},
|
|
];
|
|
|
|
const AUDIT_GROUP: SidebarItemGroup = {
|
|
type: "group",
|
|
id: "audit",
|
|
titleKey: "auditGroup",
|
|
titleFallback: "Audit",
|
|
items: [
|
|
{
|
|
id: "audit",
|
|
href: "/dashboard/audit",
|
|
i18nKey: "auditLog",
|
|
subtitleKey: "auditLogSubtitle",
|
|
icon: "policy",
|
|
},
|
|
{
|
|
id: "audit-mcp",
|
|
href: "/dashboard/audit/mcp",
|
|
i18nKey: "auditMcp",
|
|
subtitleKey: "auditMcpSubtitle",
|
|
icon: "security",
|
|
},
|
|
{
|
|
id: "audit-a2a",
|
|
href: "/dashboard/audit/a2a",
|
|
i18nKey: "auditA2a",
|
|
subtitleKey: "auditA2aSubtitle",
|
|
icon: "device_hub",
|
|
},
|
|
],
|
|
};
|
|
|
|
const DEVTOOLS_ITEMS: readonly SidebarItemDefinition[] = [
|
|
{
|
|
id: "translator",
|
|
href: "/dashboard/translator",
|
|
i18nKey: "translator",
|
|
subtitleKey: "translatorSubtitle",
|
|
icon: "translate",
|
|
},
|
|
{
|
|
id: "playground",
|
|
href: "/dashboard/playground",
|
|
i18nKey: "playground",
|
|
subtitleKey: "playgroundSubtitle",
|
|
icon: "science",
|
|
},
|
|
{
|
|
id: "search-tools",
|
|
href: "/dashboard/search-tools",
|
|
i18nKey: "searchTools",
|
|
subtitleKey: "searchToolsSubtitle",
|
|
icon: "manage_search",
|
|
},
|
|
];
|
|
|
|
const MCP_ITEM: SidebarItemDefinition = {
|
|
id: "mcp",
|
|
href: "/dashboard/mcp",
|
|
i18nKey: "mcp",
|
|
subtitleKey: "mcpSubtitle",
|
|
icon: "hub",
|
|
};
|
|
|
|
const AGENTIC_FEATURES_ITEMS: readonly SidebarSectionChild[] = [
|
|
{
|
|
id: "memory",
|
|
href: "/dashboard/memory",
|
|
i18nKey: "memory",
|
|
subtitleKey: "memorySubtitle",
|
|
icon: "psychology",
|
|
},
|
|
{
|
|
id: "agent-skills",
|
|
href: "/dashboard/agent-skills",
|
|
i18nKey: "agentSkills",
|
|
subtitleKey: "agentSkillsSubtitle",
|
|
icon: "share",
|
|
},
|
|
{
|
|
id: "chaos-config",
|
|
href: "/dashboard/chaos",
|
|
i18nKey: "chaosConfig",
|
|
labelFallback: "Chaos Mode",
|
|
subtitleKey: "chaosConfigSubtitle",
|
|
subtitleFallback: "Multi-model parallel execution",
|
|
icon: "blender",
|
|
},
|
|
{
|
|
id: "skills",
|
|
href: "/dashboard/omni-skills",
|
|
i18nKey: "omniSkills",
|
|
subtitleKey: "omniSkillsSubtitle",
|
|
icon: "auto_fix_high",
|
|
},
|
|
MCP_ITEM,
|
|
{
|
|
id: "a2a",
|
|
href: "/dashboard/a2a",
|
|
i18nKey: "a2a",
|
|
subtitleKey: "a2aSubtitle",
|
|
icon: "device_hub",
|
|
},
|
|
{
|
|
id: "plugins",
|
|
href: "/dashboard/plugins",
|
|
i18nKey: "plugins",
|
|
subtitleKey: "pluginsSubtitle",
|
|
icon: "extension",
|
|
},
|
|
];
|
|
|
|
const GAMIFICATION_GROUP: SidebarItemGroup = {
|
|
type: "group",
|
|
id: "gamification",
|
|
titleKey: "gamificationGroup",
|
|
titleFallback: "Gamification",
|
|
items: [
|
|
{
|
|
id: "leaderboard",
|
|
href: "/dashboard/leaderboard",
|
|
i18nKey: "leaderboard",
|
|
subtitleKey: "leaderboardSubtitle",
|
|
icon: "emoji_events",
|
|
},
|
|
{
|
|
id: "profile",
|
|
href: "/dashboard/profile",
|
|
i18nKey: "profile",
|
|
subtitleKey: "profileSubtitle",
|
|
icon: "person",
|
|
},
|
|
{
|
|
id: "tokens",
|
|
href: "/dashboard/tokens",
|
|
i18nKey: "tokens",
|
|
subtitleKey: "tokensSubtitle",
|
|
icon: "toll",
|
|
},
|
|
],
|
|
};
|
|
|
|
const OTHER_FEATURES_ITEMS: readonly SidebarItemDefinition[] = [
|
|
{
|
|
id: "media",
|
|
href: "/dashboard/cache/media",
|
|
i18nKey: "media",
|
|
subtitleKey: "mediaSubtitle",
|
|
icon: "perm_media",
|
|
},
|
|
];
|
|
|
|
const BATCH_GROUP: SidebarItemGroup = {
|
|
type: "group",
|
|
id: "batch",
|
|
titleKey: "batchGroup",
|
|
titleFallback: "Batch",
|
|
items: [
|
|
{
|
|
id: "batch",
|
|
href: "/dashboard/batch",
|
|
i18nKey: "batch",
|
|
subtitleKey: "batchSubtitle",
|
|
icon: "view_list",
|
|
},
|
|
{
|
|
id: "batch-files",
|
|
href: "/dashboard/batch/files",
|
|
i18nKey: "batchFiles",
|
|
subtitleKey: "batchFilesSubtitle",
|
|
icon: "folder",
|
|
},
|
|
],
|
|
};
|
|
|
|
const CONFIGURATION_ITEMS: readonly SidebarItemDefinition[] = [
|
|
{
|
|
id: "settings-general",
|
|
href: "/dashboard/settings/general",
|
|
i18nKey: "settingsGeneral",
|
|
subtitleKey: "settingsGeneralSubtitle",
|
|
icon: "tune",
|
|
},
|
|
{
|
|
id: "settings-appearance",
|
|
href: "/dashboard/settings/appearance",
|
|
i18nKey: "settingsAppearance",
|
|
subtitleKey: "settingsAppearanceSubtitle",
|
|
icon: "palette",
|
|
},
|
|
{
|
|
id: "settings-ai",
|
|
href: "/dashboard/settings/ai",
|
|
i18nKey: "settingsAi",
|
|
subtitleKey: "settingsAiSubtitle",
|
|
icon: "auto_awesome",
|
|
},
|
|
{
|
|
id: "settings-modality-bridge",
|
|
href: "/dashboard/settings/modality-bridge",
|
|
i18nKey: "settingsModalityBridge",
|
|
subtitleKey: "settingsModalityBridgeSubtitle",
|
|
icon: "image_search",
|
|
},
|
|
{
|
|
id: "settings-routing",
|
|
href: "/dashboard/settings/routing",
|
|
i18nKey: "globalRouting",
|
|
subtitleKey: "globalRoutingSubtitle",
|
|
icon: "route",
|
|
},
|
|
{
|
|
id: "settings-resilience",
|
|
href: "/dashboard/settings/resilience",
|
|
i18nKey: "settingsResilience",
|
|
subtitleKey: "settingsResilienceSubtitle",
|
|
icon: "health_and_safety",
|
|
},
|
|
{
|
|
id: "settings-advanced",
|
|
href: "/dashboard/settings/advanced",
|
|
i18nKey: "settingsAdvanced",
|
|
subtitleKey: "settingsAdvancedSubtitle",
|
|
icon: "engineering",
|
|
},
|
|
{
|
|
id: "settings-security",
|
|
href: "/dashboard/settings/security",
|
|
i18nKey: "settingsSecurity",
|
|
subtitleKey: "settingsSecuritySubtitle",
|
|
icon: "shield",
|
|
},
|
|
{
|
|
id: "settings-access-tokens",
|
|
href: "/dashboard/settings/access-tokens",
|
|
i18nKey: "settingsAccessTokens",
|
|
labelFallback: "Access Tokens",
|
|
subtitleKey: "settingsAccessTokensSubtitle",
|
|
icon: "key",
|
|
},
|
|
{
|
|
id: "settings-feature-flags",
|
|
href: "/dashboard/settings/feature-flags",
|
|
i18nKey: "settingsFeatureFlags",
|
|
subtitleKey: "settingsFeatureFlagsSubtitle",
|
|
icon: "flag",
|
|
},
|
|
{
|
|
id: "settings-cache",
|
|
href: "/dashboard/settings/cache",
|
|
i18nKey: "settingsCache",
|
|
subtitleKey: "settingsCacheSubtitle",
|
|
icon: "memory",
|
|
},
|
|
{
|
|
id: "settings-sidebar",
|
|
href: "/dashboard/settings/sidebar",
|
|
i18nKey: "settingsSidebar",
|
|
subtitleKey: "settingsSidebarSubtitle",
|
|
icon: "view_sidebar",
|
|
},
|
|
];
|
|
|
|
const HELP_ITEMS: readonly SidebarItemDefinition[] = [
|
|
{
|
|
id: "docs",
|
|
href: "/docs",
|
|
i18nKey: "docs",
|
|
subtitleKey: "docsSubtitle",
|
|
icon: "menu_book",
|
|
external: true,
|
|
},
|
|
{
|
|
id: "issues",
|
|
href: "https://github.com/diegosouzapw/OmniRoute/issues",
|
|
i18nKey: "issues",
|
|
subtitleKey: "issuesSubtitle",
|
|
icon: "bug_report",
|
|
external: true,
|
|
},
|
|
{
|
|
id: "changelog",
|
|
href: "/dashboard/changelog",
|
|
i18nKey: "changelog",
|
|
subtitleKey: "changelogSubtitle",
|
|
icon: "campaign",
|
|
},
|
|
];
|
|
|
|
// ─── Sections ────────────────────────────────────────────────────────────────
|
|
|
|
export const SIDEBAR_SECTIONS: readonly SidebarSectionDefinition[] = [
|
|
{
|
|
id: "home",
|
|
titleKey: "home",
|
|
titleFallback: "Home",
|
|
children: HOME_ITEMS,
|
|
showTitle: false,
|
|
},
|
|
{
|
|
id: "omni-proxy",
|
|
titleKey: "omniProxySection",
|
|
titleFallback: "OmniProxy",
|
|
children: [
|
|
...OMNI_PROXY_ITEMS,
|
|
COMPRESSION_CONTEXT_GROUP,
|
|
TOOLS_GROUP,
|
|
INTEGRATIONS_GROUP,
|
|
PROXY_ITEM,
|
|
],
|
|
},
|
|
{
|
|
id: "analytics",
|
|
titleKey: "analyticsSection",
|
|
titleFallback: "Analytics",
|
|
children: ANALYTICS_ITEMS,
|
|
},
|
|
{
|
|
id: "costs",
|
|
titleKey: "costsSection",
|
|
titleFallback: "Costs",
|
|
children: COSTS_ITEMS,
|
|
},
|
|
{
|
|
id: "monitoring",
|
|
titleKey: "monitoringSection",
|
|
titleFallback: "Monitoring",
|
|
children: [...MONITORING_ITEMS, LOGS_GROUP, AUDIT_GROUP, SYSTEM_GROUP],
|
|
},
|
|
{
|
|
id: "devtools",
|
|
titleKey: "devtoolsSection",
|
|
titleFallback: "Dev Tools",
|
|
children: DEVTOOLS_ITEMS,
|
|
visibility: "debug",
|
|
},
|
|
{
|
|
id: "agentic-features",
|
|
titleKey: "agenticFeaturesSection",
|
|
titleFallback: "Agentic Features",
|
|
children: AGENTIC_FEATURES_ITEMS,
|
|
},
|
|
{
|
|
id: "other-features",
|
|
titleKey: "otherFeaturesSection",
|
|
titleFallback: "Other Features",
|
|
children: [GAMIFICATION_GROUP, ...OTHER_FEATURES_ITEMS, BATCH_GROUP],
|
|
},
|
|
{
|
|
id: "configuration",
|
|
titleKey: "configurationSection",
|
|
titleFallback: "Configuration",
|
|
children: CONFIGURATION_ITEMS,
|
|
},
|
|
{
|
|
id: "help",
|
|
titleKey: "helpSection",
|
|
titleFallback: "Help",
|
|
children: HELP_ITEMS,
|
|
},
|
|
] as const;
|