Spaces:
Runtime error
Runtime error
| <html> | |
| <body style="background:black;color:red;"> | |
| <h1>CultCore Control</h1> | |
| <button onclick="ask()">🧿 Speak</button> | |
| <script> | |
| function ask(){ | |
| fetch("/api/ask",{ | |
| method:"POST", | |
| headers:{"Content-Type":"application/json"}, | |
| body:JSON.stringify({text:"Deliver prophecy"}) | |
| }) | |
| .then(r=>r.json()) | |
| .then(d=>alert(d.answer)) | |
| } | |
| </script> | |
| </body> | |
| </html> |