Chat / index.html
Severian's picture
Update index.html
c0c6cfb verified
raw
history blame
994 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AnythingLLM Chatbot</title>
<!-- Optional: Custom CSS to Remove Margins and Ensure Fullscreen -->
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden; /* Prevent scrolling */
}
#chatbot-container {
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<!-- Chatbot Container -->
<div id="chatbot-container"></div>
<!-- Chatbot Embed Script -->
<script
data-embed-id="f873bd25-2eb1-4e69-9f13-114ca6585a5b"
data-base-api-url="https://severian-anything.hf.space/api/embed"
data-window-height="100vh"
data-window-width="100vw"
data-position="top-left"
data-open-on-load="on"
src="https://severian-anything.hf.space/embed/anythingllm-chat-widget.min.js">
</script>
<!-- AnythingLLM (https://anythingllm.com) -->
</body>
</html>