-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (125 loc) · 3.71 KB
/
index.html
File metadata and controls
133 lines (125 loc) · 3.71 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Finity Alpha</title>
<link rel="icon" type="image/x-icon" href="finity Alpha logo_no_text.png" />
<style>
body {
font-family: "Lucida Console", monospace;
font-size: 18px;
color: #111;
background-color: white;
max-width: 90vw;
margin: 0 auto;
padding: 0 50px;
box-sizing: border-box;
}
code {
font-family: Consolas, "courier new";
color: crimson;
background-color: #f1f1f1;
padding: 2px;
font-size: 105%;
}
.landing {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
min-height: 100dvh;
text-align: center;
}
.separator {
letter-spacing: -9px;
}
hr {
border: none;
height: 2px;
background-color: lightgrey;
width: 100%;
margin: 30px auto;
}
table {
border-collapse: collapse;
text-align: center;
width: 100%;
}
td {
padding: 5px 20px;
border: 1px solid #dddddd;
}
.quiet,
.links-container a {
color: inherit;
}
.links-container {
font-size: 24px;
margin: 20px;
}
.links-container a {
text-decoration: none;
margin: 0 10px;
}
.faqtable dt {
margin-bottom: 0.75em;
font-style: oblique;
}
.faqtable dd {
margin-left: 0;
margin-bottom: 2em;
}
</style>
</head>
<body>
<div class="landing">
<img src="finity Alpha logo.png" alt="Finity Alpha" width="300px" />
<div class="links-container">
<a href="#Finity Voice">Finity Voice</a>
<span class="separator">|</span>
<a href="#Finity Thoughts">Finity Thoughts</a>
<span class="separator">|</span>
<a href="#OpenVoiceChat">OpenVoiceChat</a>
<span class="separator">|</span>
<a href="#Company">Company</a>
<span class="separator">|</span>
<a href="#Join us">Join us</a>
</div>
</div>
<hr />
<h2 id="Finity Voice">Finity Voice</h2>
<a href="https://finityvoice.com/">FinityVoice</a> is a horizontal voice AI
platform for developers. We provide the engine and tools needed to build,
deploy, and scale voice AI systems and products that don't break in
production. <br />
<hr />
<h2 id="Finity Thoughts">Finity Thoughts</h2>
<a href="https://thoughts.finityalpha.com/">Finity Thoughts</a> is a tool
for knowledge workers to capture, organize and share their thoughts and
ideas. <br />
<hr />
<h2 id="OpenVoiceChat">OpenVoiceChat</h2>
<a href="https://www.finityalpha.com/OpenVoiceChat/"> OpenVoiceChat</a> is a
free opensource
<a href="https://github.com/fakhirali/OpenVoiceChat">library</a>
that allows you to have natural voice conversations with your LLM agent.
<br /><br />
If you plan on making an LLM agent and want to have your users be able to
talk to it like a person (low latency, handles interruptions), this library
is for you. <br />
<hr />
<h2 id="Company">Company</h2>
A voice AI startup trying to empower knowledge workers using AI.
<hr />
<h2 id="Join us">Join us</h2>
We only hire people who have contributed to OpenVoiceChat.
<a
href="https://docs.google.com/spreadsheets/d/1d2MZTa9FKM4IHLrBs_nMuA2yuLaSY4USzdGH6vRdPbU/edit#gid=0"
>Bounties</a
>
are a great way to figure out if you are a good fit for our team, while also
getting paid for your work.
<hr />
</body>
</html>