lua-cli 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/web/index.html +26 -0
- package/package.json +1 -1
- package/template/package.json +1 -1
|
@@ -0,0 +1,26 @@
|
|
|
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>Chat to your Agent [Sandbox]</title>
|
|
7
|
+
<link rel="stylesheet" href="/app.css">
|
|
8
|
+
<link rel="stylesheet" href="/tools-page.css">
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<div id="root"></div>
|
|
12
|
+
|
|
13
|
+
<script>
|
|
14
|
+
// Configuration will be injected by the server
|
|
15
|
+
window.__LUA_CONFIG__ = {
|
|
16
|
+
apiKey: '{{API_KEY}}',
|
|
17
|
+
agentId: '{{AGENT_ID}}',
|
|
18
|
+
skillId: '{{SKILL_ID}}',
|
|
19
|
+
sandboxId: '{{SANDBOX_ID}}'
|
|
20
|
+
};
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
<!-- Our React app will be bundled and loaded here -->
|
|
24
|
+
<script src="/app.js"></script>
|
|
25
|
+
</body>
|
|
26
|
+
</html>
|
package/package.json
CHANGED