-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 8efe336
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |