File size: 1,447 Bytes
724e171
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Ares General Intelligence</title>
    <link rel="stylesheet" href="style.css">
    <!-- Load Transformers.js for browser-based, zero-server AI execution -->
    <script type="module" src="https://cdn.jsdelivr.net/npm/@xenova/transformers@2.14.0"></script>
</head>
<body>
    <div id="app">
        <header>
            <h1>Ares & Xiphos OS</h1>
            <span class="status">System Online | Neural Link: Stable</span>
        </header>

        <main id="chat-container">
            <div class="message system">
                <strong>[System]</strong> Welcome. Ares is initializing. Local processing via WebGPU/Transformers.js enabled. No external APIs connected.
            </div>
        </main>

        <div id="verification-modal" class="hidden">
            <h3>Xiphos Tool Proposal</h3>
            <pre id="code-block"></pre>
            <div class="actions">
                <button id="btn-approve">Approve & Execute</button>
                <button id="btn-deny">Deny</button>
            </div>
        </div>

        <footer>
            <input type="text" id="user-input" placeholder="Communicate with Ares..." autocomplete="off">
            <button id="send-btn">Send</button>
        </footer>
    </div>
    <script type="module" src="app.js"></script>
</body>
</html>