Spaces:
Sleeping
Sleeping
<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> | |