Skip to content

Commit 8efe336

Browse files
committed
Initial page
0 parents  commit 8efe336

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

assets/images/logo.png

37.2 KB
Loading

assets/style.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
body {
2+
background-color: #505050;
3+
color: #fff;
4+
font-family: 'Ubuntu Mono', monospace;
5+
font-size: 18px;
6+
}
7+
8+
a {
9+
color: #fff;
10+
text-decoration: underline;
11+
font-weight: bold;
12+
}
13+
14+
li {
15+
padding-top: 10px;
16+
}

index.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Talkd.ai</title>
6+
<link rel="stylesheet" href="/assets/style.css">
7+
<link rel="preconnect" href="https://fonts.googleapis.com">
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9+
<link href="https://fonts.googleapis.com/css2?family=Ubuntu+Mono:wght@400;700&display=swap" rel="stylesheet">
10+
</head>
11+
<body>
12+
<center>
13+
<img src="/assets/images/logo.png" alt="Talkd.ai" width="200">
14+
<h1 style="text-decoration: underline;">Talkd.ai</h1>
15+
<div style="max-width: 400px;">
16+
<p>Talkd.ai is an open-source software that enables you to easily deploy any LLM available through LangChain.</p>
17+
<p>It is currently in beta, and we are working on making it as easy as possible to deploy your own LLM.</p>
18+
<hr/>
19+
<p>For now, we have 2 main repositories:</p>
20+
<ul>
21+
<li><a href="https://github.com/talkdai/dialog">Dialog</a> - An extensible LLM API that enables you to easily deploy any LLM.</li>
22+
<li><a href="https://github.com/talkdai/whats_audio_synth">WhatsApp Plugin</a> - The first plugin we developed that enables users to launch Dialog with WhatsApp.</li>
23+
</ul>
24+
<hr/>
25+
<p>Made with love in 🇧🇷</p>
26+
</div>
27+
</center>
28+
</body>
29+
</html>

0 commit comments

Comments
 (0)