Skip to content

Releases: tredmann/php-ollama

Version 1.0.1

10 Jan 13:43

Choose a tag to compare

  • bugfix typo in parameter name

Version 1.0.0

07 Jan 10:59

Choose a tag to compare

Finished the first version!

Use it in the most easy way with the convenience wrapper:

$ollama = new Ollama(model: 'gemma2:latest');

echo $ollama->completion(prompt: 'What is the capitol of Germany?');
// The capital of Germany is **Berlin**.

Or dig deeper and use the low-level library.