romanbot-frontend / index.html
RJuro's picture
-
a261218
<!DOCTYPE html>
<html>
<head>
<title>Chainlit Widget</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
TEST
<!-- ... -->
<script src="http://localhost:7878/copilot/index.js"></script>
<script>
window.mountChainlitWidget({
chainlitServer: "http://localhost:7878",
theme: "dark",
// other configuration options...
button: {
// containerId, imageUrl, and other properties as needed...
style: {
bgcolor: "#557a95",
color: "#ffffff",
bgcolorHover: "#698ea9",
borderColor: "#375c77",
borderWidth: "2px",
borderStyle: "solid",
borderRadius: "20px",
boxShadow: "0px 4px 8px rgba(0, 0, 0, 0.2)"
}
}
});
</script>
</body>
</html>