Some checks are pending
CI / build-check-test (push) Waiting to run
- agent.on() does not exist - replaced all 3 calls with single agent.subscribe() handler - Maps AgentEvent types: agent_start/end, turn_start/end, tool_execution_start, message_start/end - Cost tracking now reads usage from message_end event message.usage field - Added favicon.ico and apple-touch-icon.png from mascot - Fixed page title from Pi Web UI to Agent JAE
15 lines
507 B
HTML
15 lines
507 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Agent JAE</title>
|
|
<meta name="description" content="Agent JAE - AI Coding Agent by JaeSwift" />
|
|
</head>
|
|
<body class="bg-background">
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|