Chat / index.html
Severian's picture
Update index.html
42a5d92 verified
raw
history blame
1.54 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AnythingLLM Chatbot</title>
<!-- Custom CSS -->
<style>
/* Ensure the page takes up the full viewport */
html, body {
height: 100%;
margin: 0;
padding: 0;
background-color: #000; /* Black background */
overflow: hidden; /* Prevent scrolling */
}
/* Optional: Center the chatbot container if needed */
#chatbot-container {
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<!-- Chatbot Container -->
<div id="chatbot-container"></div>
<!-- AnythingLLM 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"
data-user-bg-color="#FFD700"
data-assistant-bg-color="#FFD700"
data-button-color="#FFD700"
data-chat-icon="chatBubble"
data-brand-image-url="https://cdn.pixabay.com/photo/2017/01/31/18/59/logo-2027801_960_720.png"
data-assistant-icon="https://cdn.pixabay.com/photo/2014/04/03/10/32/robot-310526_960_720.png"
data-greeting="Hello! How can I assist you today?"
data-text-size="16px"
src="https://severian-anything.hf.space/embed/anythingllm-chat-widget.min.js">
</script>
<!-- AnythingLLM (https://anythingllm.com) -->
</body>
</html>