PHP code example of php-client / ollama
1. Go to this page and download the library: Download php-client/ollama library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
php-client / ollama example snippets
use PhpClient\Ollama\Ollama;
$ollama = new Ollama('http://localhost:11434');
$response = $ollama->generation()->generateCompletion([
'model' => 'llama3.2:latest',
'prompt' => 'Hello!',
// Wait for end of generation before getting response:
'stream' => false,
]);
echo $response->json('response');
bash
composer