From 045d1f0a3c259d78c33292768f624e945408a254 Mon Sep 17 00:00:00 2001 From: lebrunel <124721263+lebrunel@users.noreply.github.com> Date: Thu, 18 Apr 2024 14:39:10 +0100 Subject: [PATCH] remove doc warning --- lib/ollama.ex | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/lib/ollama.ex b/lib/ollama.ex index 5e7a3e7..5623aa9 100644 --- a/lib/ollama.ex +++ b/lib/ollama.ex @@ -29,17 +29,6 @@ defmodule Ollama do ## Quickstart - > #### API change {: .info} - > - > The last two minor versions have introduced breaking API changes. We're - close to an API that feels nice, so hopefully no more breaking changes 🙏🏻. - > - > - `0.5.0` - Streaming requests continues to return a `t:Task.t/0` when the - `:stream` option is a `t:pid/0`, but now returns an `t:Enumerable.t/0` when - `:stream` is `true`. Refer to the [section on Streaming](#module-streaming). - > - `0.4.0` - The `Ollama.API` module has been deprecated in favour of the top - level `Ollama` module. `Ollama.API` will be removed in version 1. - Assuming you have Ollama running on localhost, and that you have installed a model, use `completion/2` or `chat/2` interact with the model.