Skip to content

Commit b0d2fdd

Browse files
authored
Add initial HTML documentation for AI Voice Stack
Initial creation of the HTML documentation for the AI Voice Stack project, including project overview, functionality, example interaction, and relevant links.
1 parent fb62937 commit b0d2fdd

1 file changed

Lines changed: 70 additions & 0 deletions

File tree

docs/index.html

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Lucho — AI Stack</title>
6+
<style>
7+
body {
8+
font-family: Arial, sans-serif;
9+
background: #0f172a;
10+
color: #e5e7eb;
11+
padding: 40px;
12+
max-width: 900px;
13+
margin: auto;
14+
}
15+
h1, h2 {
16+
color: #38bdf8;
17+
}
18+
.box {
19+
background: #020617;
20+
padding: 20px;
21+
margin: 20px 0;
22+
border-radius: 8px;
23+
}
24+
code {
25+
color: #a5f3fc;
26+
}
27+
a {
28+
color: #38bdf8;
29+
text-decoration: none;
30+
}
31+
</style>
32+
</head>
33+
<body>
34+
35+
<h1>AI Voice Stack</h1>
36+
<p>I build AI-driven systems focused on voice, automation, and real-world operations.</p>
37+
38+
<div class="box">
39+
<h2>Project — Voice AI Gateway</h2>
40+
<p>
41+
A modular AI system that processes voice input, detects intent,
42+
applies decision logic, and generates responses.
43+
</p>
44+
</div>
45+
46+
<div class="box">
47+
<h2>How it works</h2>
48+
<p>
49+
<code>Voice Input → Speech-to-Text → Intent Detection → Decision Logic → Response</code>
50+
</p>
51+
</div>
52+
53+
<div class="box">
54+
<h2>Example interaction</h2>
55+
<p><strong>User:</strong> "I want to know the price"</p>
56+
<p><strong>Intent:</strong> PRICING</p>
57+
<p><strong>System response:</strong> "Our pricing starts from $X depending on your needs."</p>
58+
</div>
59+
60+
<div class="box">
61+
<h2>Links</h2>
62+
<ul>
63+
<li><a href="../projects/voice-ai-gateway/README.md">Project README</a></li>
64+
<li><a href="../docs/architectures/voice-ai-gateway.md">Architecture</a></li>
65+
<li><a href="../docs/decisions/0002-intent-map.md">Intent Map</a></li>
66+
</ul>
67+
</div>
68+
69+
</body>
70+
</html>

0 commit comments

Comments
 (0)