mirror of
https://github.com/open-jarvis/OpenJarvis.git
synced 2026-07-30 19:02: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>
23 lines
456 B
JSON
23 lines
456 B
JSON
{
|
|
"name": "openjarvis-chat",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"typescript": "~5.7.0",
|
|
"vite": "^6.0.0"
|
|
}
|
|
}
|