Files
html/api/ambre-cascade-test.php
2026-04-22 02:15:03 +02:00

8 lines
522 B
PHP

<?php
header("Content-Type: application/json");
$ctx = stream_context_create(["http"=>["method"=>"POST","header"=>"Content-Type: application/json\r\n","content"=>json_encode(["model"=>"fast","messages"=>[["role"=>"user","content"=>"HI"]],"max_tokens"=>50]),"timeout"=>10]]);
$t0 = microtime(true);
$resp = @file_get_contents("http://127.0.0.1:4000/v1/chat/completions", false, $ctx);
$el = round((microtime(true)-$t0)*1000);
echo json_encode(["elapsed_ms"=>$el, "ok"=>(bool)$resp, "first"=>substr($resp?:"empty",0,200)]);