Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## v0.9.2

A patch release that brings the `ChatReqLLM` backend to parity with `ChatOpenAI` for tool definitions. No breaking changes.

### Added

- **`ChatReqLLM` now maps a `Function`'s `:strict` flag and `FunctionParam` syntax onto the ReqLLM tool.** Tools defined with a `:parameters` list of `LangChain.FunctionParam` structs previously produced an empty schema, and `fun.strict` was dropped entirely. Both parameter forms (`:parameters` and raw `:parameters_schema`) are now supported, and `strict:` is passed through so providers like OpenAI can enforce structured-output schemas. https://github.com/brainlid/langchain/pull/583

## v0.9.1

A patch release that fixes tool-call serialization when a `ToolCall`'s arguments are still an unparsed string. No breaking changes.
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule LangChain.MixProject do
use Mix.Project

@source_url "https://github.com/brainlid/langchain"
@version "0.9.1"
@version "0.9.2"

def project do
[
Expand Down