-
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.
Added an example that uses Langchain to connect to an OpenAI compatible API endpoint. Resolves #3.
- Loading branch information
Showing
8 changed files
with
7,449 additions
and
0 deletions.
There are no files selected for viewing
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 @@ | ||
dist |
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,25 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title></title> | ||
<!-- import script as module --> | ||
<script src="dist/bundle.esm.min.js" type="module"></script> | ||
<link | ||
href="dist/bundle.min.css" | ||
rel="stylesheet" | ||
/> | ||
</head> | ||
<body> | ||
<div id="main"> | ||
<div id="messages"></div> | ||
</div> | ||
<div | ||
id="chatbar" | ||
data-chatbotui-note="Chatbot UI" | ||
data-chatbotui-input-placeholder="Send a message to ChatbotUI" | ||
></div> | ||
</body> | ||
</html> | ||
|
Oops, something went wrong.