diff --git a/CHANGELOG.md b/CHANGELOG.md index 55f4030fa..8dcc5f5e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ ## [Unreleased] +## [0.6.18] - 2023-10-16 +- Introduce `Langchain::LLM::Response`` object +- Introduce `Langchain::Chunk` object +- Add the ask() method to the Langchain::ActiveRecord::Hooks + +## [0.6.17] - 2023-10-10 +- Bump weaviate and chroma-db deps +- `Langchain::Chunker::Semantic` chunker +- Re-structure Conversations class +- Bug fixes + ## [0.6.16] - 2023-10-02 - HyDE-style similarity search - `Langchain::Chunker::Sentence` chunker diff --git a/Gemfile.lock b/Gemfile.lock index ac5072c37..468504d5b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -10,7 +10,7 @@ GIT PATH remote: . specs: - langchainrb (0.6.17) + langchainrb (0.6.18) baran (~> 0.1.9) colorize (~> 0.8.1) json-schema (~> 4.0.0) diff --git a/lib/langchain/version.rb b/lib/langchain/version.rb index 4db8352d7..87c65031b 100644 --- a/lib/langchain/version.rb +++ b/lib/langchain/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Langchain - VERSION = "0.6.17" + VERSION = "0.6.18" end