Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>AI Agent with TensorFlow.js</title> | |
<style> | |
body { display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } | |
canvas { border: 1px solid black; } | |
</style> | |
</head> | |
<body> | |
<canvas id="gameCanvas" width="800" height="600"></canvas> | |
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"></script> | |
<script src="app.js"></script> | |
</body> | |
</html> | |