34112-vm/api/chat.php
Flatlogic Bot 3e646d21f0 v1
2025-09-16 18:09:52 +00:00

10 lines
313 B
PHP

<?php
header('Content-Type: application/json');
// In the future, you can add logic here to process $_POST['message']
// and connect to an AI service.
$canned_response = "Thanks for your message! We'll be in touch shortly. For now, this is a canned response.";
echo json_encode(['reply' => $canned_response]);