<?php
require 'examples/boot.php';
use Cognesy\Messages\Messages;
use Cognesy\Polyglot\Inference\Data\ResponseFormat;
use Cognesy\Polyglot\Inference\Inference;
$data = Inference::using('openai')
->with(
messages: Messages::fromString('What is capital of France? \
Respond with JSON data containing name", population and year of founding. \
Example: {"name": "Berlin", "population": 3700000, "founded": 1237}'),
responseFormat: ResponseFormat::jsonObject(),
options: ['max_tokens' => 64],
)
->asJsonData();
echo "USER: What is capital of France\n";
echo "ASSISTANT:\n";
dump($data);
assert(is_array($data), 'Response should be an array');
assert(isset($data['name']), 'Response should have "name" field');
assert(strpos($data['name'], 'Paris') !== false, 'City name should be Paris');
assert(isset($data['population']), 'Response should have "population" field');
?>