chainlit / index.html
rafaaa2105's picture
Upload 4 files
01c5d61 verified
raw
history blame contribute delete
511 Bytes
<html>
<head>
<meta charset="UTF-8" />
</head>
<body>
<h1>Chainlit Copilot Test</h1>
<script src="http://localhost:8000/copilot/index.js"></script>
<script>
window.mountChainlitWidget({
chainlitServer: "http://localhost:8000",
});
window.addEventListener("chainlit-call-fn", (e) => {
const { name, args, callback } = e.detail;
if (name === "test") {
callback("You sent: " + args.msg);
}
});
</script>
</body>
</html>