Spaces:
Sleeping
Sleeping
| <html> | |
| <head> | |
| <title>Medical Vector DB</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> | |
| <h1>Medical Vector Database</h1> | |
| <div id="loading">Loading database, please wait...</div> | |
| <div id="app" style="display:none;"> | |
| <textarea id="sql" rows="6" cols="80"> | |
| SELECT * FROM disease LIMIT 10; | |
| </textarea> | |
| <br> | |
| <button onclick="runQuery()">Execute</button> | |
| <pre id="output"></pre> | |
| </div> | |
| <script src="script.js"></script> | |
| </body> | |
| </html> | |