Skip to content

Commit

Permalink
Initial page
Browse files Browse the repository at this point in the history
  • Loading branch information
vmesel committed Dec 27, 2023
0 parents commit 8efe336
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
Binary file added assets/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions assets/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
body {
background-color: #505050;
color: #fff;
font-family: 'Ubuntu Mono', monospace;
font-size: 18px;
}

a {
color: #fff;
text-decoration: underline;
font-weight: bold;
}

li {
padding-top: 10px;
}
29 changes: 29 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Talkd.ai</title>
<link rel="stylesheet" href="/assets/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu+Mono:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<center>
<img src="/assets/images/logo.png" alt="Talkd.ai" width="200">
<h1 style="text-decoration: underline;">Talkd.ai</h1>
<div style="max-width: 400px;">
<p>Talkd.ai is an open-source software that enables you to easily deploy any LLM available through LangChain.</p>
<p>It is currently in beta, and we are working on making it as easy as possible to deploy your own LLM.</p>
<hr/>
<p>For now, we have 2 main repositories:</p>
<ul>
<li><a href="https://github.com/talkdai/dialog">Dialog</a> - An extensible LLM API that enables you to easily deploy any LLM.</li>
<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>
</ul>
<hr/>
<p>Made with love in 🇧🇷</p>
</div>
</center>
</body>
</html>

0 comments on commit 8efe336

Please sign in to comment.