-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (61 loc) · 4.01 KB
/
Copy pathindex.html
File metadata and controls
61 lines (61 loc) · 4.01 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Computer Use × Voice AI Operator — FutureLab Prototype</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link href="https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,650&family=IBM+Plex+Sans:wght@400;500;600&display=swap" rel="stylesheet" />
<style>
:root { --ink:#1b1f27; --mute:#5b6573; --line:#e6e9ee; --bg:#f6f7f9; --card:#fff; --blue:#2563eb; --cyan:#0891b2; }
* { box-sizing:border-box; }
body { margin:0; font-family:"IBM Plex Sans",sans-serif; background:linear-gradient(180deg,#f8fafc,#eef2f7); color:var(--ink); }
header { padding:48px 8vw 24px; }
.kicker { letter-spacing:.18em; text-transform:uppercase; font-size:11px; color:var(--cyan); font-weight:600; }
h1 { font-family:Fraunces,serif; font-size:clamp(36px,6vw,64px); margin:8px 0 12px; }
.one { font-size:20px; color:var(--mute); max-width:720px; }
main { padding:0 8vw 80px; display:grid; gap:20px; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); }
.card { background:var(--card); border:1px solid var(--line); border-radius:18px; padding:24px; box-shadow:0 10px 30px rgba(27,31,39,.04); }
h2 { font-size:13px; letter-spacing:.14em; text-transform:uppercase; color:var(--blue); margin:0 0 10px; }
.demo { grid-column:1/-1; }
label { display:block; font-size:12px; color:var(--mute); margin:12px 0 6px; }
input, textarea { width:100%; border:1px solid var(--line); border-radius:12px; padding:12px 14px; font:inherit; }
button { margin-top:16px; background:var(--blue); color:white; border:0; border-radius:999px; padding:12px 18px; font-weight:600; cursor:pointer; }
.out { margin-top:16px; min-height:72px; background:#f8fafc; border-radius:12px; padding:14px; color:var(--mute); }
.badge { display:inline-flex; gap:8px; align-items:center; background:#eff6ff; color:var(--blue); border-radius:999px; padding:6px 10px; font-size:12px; }
</style>
</head>
<body>
<header>
<div class="kicker">Vectra FutureLab prototype · AI + Agentic AI</div>
<h1>Computer Use × Voice AI Operator</h1>
<p class="one">A product that only exists because Computer Use and Voice AI now work together.</p>
<div class="badge">Isolated demo · AI / Agentic scope only</div>
</header>
<main>
<section class="card"><h2>Problem</h2><p>Computer Use and Voice AI are appearing in overlapping research and product activity.</p></section>
<section class="card"><h2>First customer</h2><p>A lab or startup already combining two of the three</p></section>
<section class="card"><h2>Why now</h2><p>These technologies started showing up in the same signal clusters this cycle.</p></section>
<section class="card"><h2>MVP</h2><p>A narrow demo that only works if all colliding capabilities are present.</p></section>
<section class="card demo">
<h2>Core agentic loop</h2>
<p>This isolated prototype demonstrates the product's first useful autonomous loop — not a generic dashboard.</p>
<label>Describe the agent job to be done</label>
<textarea id="job" rows="3" placeholder="e.g. Hold $240 until the data agent delivers the promised corpus"></textarea>
<label>Counterparty agent</label>
<input id="who" placeholder="agent:vendor.dataset.7" />
<button id="go">Run the loop</button>
<div class="out" id="out">Waiting for an agent job…</div>
</section>
</main>
<script>
const product = 'Computer Use × Voice AI Operator';
document.getElementById("go").onclick = () => {
const job = document.getElementById("job").value || "unnamed job";
const who = document.getElementById("who").value || "unknown-agent";
document.getElementById("out").innerHTML =
"<strong>"+product+"</strong> accepted the agent job.<br/>Counterparty <code>"+who+"</code><br/>Status: held under policy · audit trail written · human kill-switch armed.";
};
</script>
</body>
</html>