cre-chatbot-rag / index.html
tony-42069's picture
Simplified PDF processing and dependencies
f3dfbd4
raw
history blame contribute delete
715 Bytes
<!DOCTYPE html>
<html>
<head>
<title>CRE Knowledge Assistant</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
iframe {
width: 100%;
height: 100vh;
border: none;
}
</style>
</head>
<body>
<iframe src="/api" allow="camera;microphone"></iframe>
<script>
window.addEventListener('message', function(e) {
// Handle any messages from the Streamlit app
if (e.data.type === 'streamlit') {
console.log('Received message from Streamlit:', e.data);
}
});
</script>
</body>
</html>