diff --git a/CHANGELOG.md b/CHANGELOG.md index 669824ea..adc8f622 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,15 @@ # Changelog -## v0.1.3 (2023-11-?) - +## v0.1.3 (2023-12-01) + +- Merged PR #43 - https://github.com/brainlid/langchain/pull/43 + - Add Finch retry strategy to OpenAI Chat API requests +- Merged PR #39 - https://github.com/brainlid/langchain/pull/39 + - Changed ENV key from `OPENAI_KEY` to `OPENAI_API_KEY` to be consistent with the OpenAI docs. +- Merged PR #36 - https://github.com/brainlid/langchain/pull/36 + - Support specifying the `seed` with OpenAI calls. Used in testing for more deterministic behavior. +- Merged PR #34 - https://github.com/brainlid/langchain/pull/34 + - Enable sending the `json_response` flag with OpenAI model requests. - Created `LangChain.FunctionParam` to express JSONSchema-friendly data structures. Supports basic types, arrays, enums, objects, arrays of objects and nested objects. - Still allows for full control over JSONSchema by providing an override `parameters_schema` object to full self-describe it. diff --git a/mix.exs b/mix.exs index 026f707e..3733d213 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule LangChain.MixProject do use Mix.Project - @version "0.1.2" + @version "0.1.3" def project do [