mirror of
https://github.com/open-jarvis/OpenJarvis.git
synced 2026-07-30 02:42:16 +00:00
- Add React/TypeScript Chat UI frontend with sidebar, conversation management, model selector, streaming indicator, and savings panel - Wire up TelemetryStore in `jarvis serve` so TELEMETRY_RECORD events are persisted to SQLite (matching the pattern from `jarvis ask`) - Switch agents (orchestrator, react, openhands, openclaw_plugin) and the direct route handler to use `instrumented_generate()` so token counts are recorded and the /v1/savings endpoint returns real data - Restyle savings panel model display with bordered card boxes (green accent for local, orange for cloud) instead of plain text rows - Add SGLang engine backend, dashboard routes, savings computation, and agent-stream bridge for SSE streaming Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
279 B
HTML
13 lines
279 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>OpenJarvis</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|