File size: 1,636 Bytes
5009c11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
41
42
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Ares ONNX Interface</title>
    <link rel="stylesheet" href="style.css">
    <!-- Import ONNX Runtime Web -->
    <script src="https://cdn.jsdelivr.net/npm/onnxruntime-web/dist/ort.min.js"></script>
</head>
<body>
    <div class="app-container">
        <header class="header">
            <div class="logo">
                <div class="logo-circle"></div>
                <h1>Ares</h1>
            </div>
            <div class="status">
                <span class="status-dot"></span> Serverless ONNX Engine
            </div>
        </header>

        <main class="chat-container" id="chat-container">
            <div class="message system-message" id="loading-msg">
                <p>Loading PyTorch AI weights directly into your browser's VRAM... Please wait.</p>
            </div>
        </main>

        <div class="input-area">
            <input type="text" id="user-input" placeholder="Message Ares..." disabled>
            <button id="send-btn" disabled>
                <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                    <path d="M22 2L11 13" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                    <path d="M22 2L15 22L11 13L2 9L22 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                </svg>
            </button>
        </div>
    </div>
    <script src="app.js"></script>
</body>
</html>