<?phprequire'examples/boot.php';useCognesy\Http\HttpClient;useCognesy\Polyglot\Inference\Inference;useCognesy\Utils\Str;// check with default HTTP client facade$httpClient=newHttpClient();$answer=(newInference)->withDsn('preset=openai,model=gpt-3.5-turbo')->withHttpClient($httpClient)->withMessages('What is the capital of France')->withMaxTokens(64)->get();echo"USER: What is capital of France\n";echo"ASSISTANT: $answer\n";assert(Str::contains($answer,'Paris'));?>