MDIIII commited on
Commit
878b628
·
0 Parent(s):

fix: bake correct API URL into build (VITE_API_URL)

Browse files
Files changed (3) hide show
  1. README.md +13 -0
  2. assets/index-xxrZ20v2.js +0 -0
  3. index.html +21 -0
README.md ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: CryptoAgentBench UI
3
+ emoji: 📈
4
+ colorFrom: indigo
5
+ colorTo: green
6
+ sdk: static
7
+ sdk_version: 1.0.0
8
+ pinned: false
9
+ ---
10
+
11
+ # CryptoAgentBench UI
12
+
13
+ API: https://MDIIII-cryptoagentbench-api.hf.space
assets/index-xxrZ20v2.js ADDED
The diff for this file is too large to render. See raw diff
 
index.html ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>CryptoAgentBench — LLM Trading Benchmark</title>
7
+ <link rel="preconnect" href="https://fonts.googleapis.com" />
8
+ <link
9
+ href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap"
10
+ rel="stylesheet"
11
+ />
12
+ <style>
13
+ * { box-sizing: border-box; margin: 0; padding: 0; }
14
+ body { background: #0A0E1A; color: #E2E8F0; font-family: 'Inter', sans-serif; }
15
+ </style>
16
+ <script type="module" crossorigin src="/assets/index-xxrZ20v2.js"></script>
17
+ </head>
18
+ <body>
19
+ <div id="root"></div>
20
+ </body>
21
+ </html>