diff --git a/CHANGELOG.md b/CHANGELOG.md index c12bebd..8c78e7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## v0.2.3 +* Add `Rag.Ai.Ollama` as ollama provider +* Add `build_context/3`, `build_context_sources/3`, `build_prompt/3` to enable full pipeline interface +* Enable streaming of responses (@W3NDO, thank you for your contribution!) + ## v0.2.2 * Add `ref` to `Generation` for referencing in telemetry handler diff --git a/README.md b/README.md index 002a189..ec43cf1 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ by adding `rag` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:rag, "~> 0.2.2"} + {:rag, "~> 0.2.3"} ] end ``` diff --git a/mix.exs b/mix.exs index a88c188..f8df029 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Rag.MixProject do use Mix.Project @source_url "https://github.com/bitcrowd/rag" - @version "0.2.2" + @version "0.2.3" def project do [