From 45dc069e148b6319d500778c4a4d49552a22de7a Mon Sep 17 00:00:00 2001 From: Andrei Bondarev Date: Mon, 13 May 2024 16:14:59 -0400 Subject: [PATCH] 0.12.1 (#616) --- CHANGELOG.md | 5 +++++ Gemfile.lock | 2 +- lib/langchain/version.rb | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab91178d7..7871e753c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ ## [Unreleased] + +## [0.12.1] - 2024-05-13 - Langchain::LLM::Ollama now uses `llama3` by default - Langchain::LLM::Anthropic#complete() now uses `claude-2.1` by default +- Updated with new OpenAI models, including `gpt-4o` +- New `Langchain::LLM::Cohere#chat()` method. +- Introducing `UnifiedParameters` to unify parameters across LLM classes ## [0.12.0] - 2024-04-22 - [BREAKING] Rename `dimension` parameter to `dimensions` everywhere diff --git a/Gemfile.lock b/Gemfile.lock index 62057c0ac..3334d6dfe 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - langchainrb (0.12.0) + langchainrb (0.12.1) activesupport (>= 7.0.8) baran (~> 0.1.9) colorize (~> 1.1.0) diff --git a/lib/langchain/version.rb b/lib/langchain/version.rb index 32e611053..f53f1a480 100644 --- a/lib/langchain/version.rb +++ b/lib/langchain/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Langchain - VERSION = "0.12.0" + VERSION = "0.12.1" end