Spaces:
Sleeping
Sleeping
File size: 1,628 Bytes
0d3c10a 3f7b6a8 0d3c10a 46abd15 0d3c10a 46abd15 0d3c10a 46abd15 fe724e6 46abd15 0d3c10a 46abd15 fe724e6 46abd15 fe724e6 0d3c10a 27f4327 6edcaaa 27f4327 0d3c10a |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fast API 🤗 Space served with Uvicorn</title>
<link rel="stylesheet" href="/static/style.css" />
<script type="module" src="/static/script.js"></script>
</head>
<body>
<main>
<h1>Chat with your favorite website!</h1>
<section id="text-gen">
<p>here you can create a vector storage from the url you provide.</p>
<form class="text-gen-form">
<p>Here you will parse url and get list of docs</p>
<label for="text-gen-input">the url of the website</label>
<input id="text-gen-input" type="text" />
<button id="text-gen-submit">submit</button>
<button id="download-embeddings" type="button">download docs</button>
<p class="text-gen-output"></p>
</form>
<p>if you have docs, you can upload them instead.</p>
<form class="text-gen-form">
<input type="file" id="file-input" style="display: none;" />
<button id="upload-embeddings" type="button">upload docs</button>
</form>
</section>
<section id="chat">
<h2>Chat with the Model</h2>
<div id="chat-box"></div>
<form id="chat-form">
<textarea id="chat-input" placeholder="Type your message here..."></textarea>
<button type="submit">Send</button>
</form>
</section>
</main>
</body>
</html> |