35604-vm/api/test_ai.php
Flatlogic Bot d7b90335da 26.01.26
2026-01-26 21:02:05 +00:00

16 lines
397 B
PHP

<?php
header('Content-Type: application/json');
require_once __DIR__ . '/../ai/LocalAIApi.php';
try {
$response = LocalAIApi::createResponse([
'input' => [
['role' => 'user', 'content' => 'Hello, tell me a short joke.']
]
]);
echo json_encode($response);
} catch (Exception $e) {
echo json_encode(['success' => false, 'error' => $e->getMessage()]);
}