<?phpuseCognesy\Polyglot\LLM\Inference;useCognesy\Utils\Str;require'examples/boot.php';$answer=(newInference)->withConnection('minimaxi')// see /config/llm.php->create( messages:[['role'=>'user','content'=>'What is the capital of France']], options:['max_tokens'=>64])->toText();echo"USER: What is capital of France\n";echo"ASSISTANT: $answer\n";assert(Str::contains($answer,'Paris'));?>