ai-agents 0.4.2 → 0.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 28606a36bd85d6b3614af2fd49f1be51376bd31bf7d9ee2af625136b0265427c
4
- data.tar.gz: bdc4d344b634c20b9d411098da7249069ff65f07097073212cd7715f9a3f16dd
3
+ metadata.gz: a3f2287a007ce187c91546ee4ef723cadcde40e7102454d4d432c2c2c72e4e45
4
+ data.tar.gz: 4c9b810362d923c0fb821491a63fa8647c926e2666e6902383200ca8f988cf10
5
5
  SHA512:
6
- metadata.gz: 25e9fd02dfe5c8944bea743b19d3977ef453cfacbf82f85bf3580d6c1c175d2eb94fd0db10e7669cad5f7abf075a01deb73803c4b800873ea12c4b92d36522b4
7
- data.tar.gz: e20bbe3e83cc10b0392738442adbf5a275b2c7f1f6002d07a6828a1b65e885743a7568d72bf00d24d4e818d7117d6784b003ea4e6489515b25e704ec92f91d63
6
+ metadata.gz: aaa5ba1612a2551b83d3f779a10301c806f9a95eb082b4c6ab6db56fdc90487093b0a5edd0c5edc16c2a4888e1ada2abc66433bab73c569886b3b66f0c41d528
7
+ data.tar.gz: 2669853cd34f497d696fba2ccf02ed384057ea144b7ffdd0c390aa28c1c4bf830929723f181a0bfd130e206707fc80f9c2a0e12259da53099ef8ab92c5f681d8
data/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.4.3] - 2025-08-04
9
+
10
+ ### Fixed
11
+ - **Schema Parameter Passing**: Fixed issue where response schema parameters were not being properly passed through in agent conversations
12
+ - Ensured schema configuration flows correctly through the agent execution pipeline
13
+ - Improved parameter handling for structured output validation
14
+
8
15
  ## [0.4.2] - 2025-08-04
9
16
 
10
17
  ### Fixed
data/lib/agents/chat.rb CHANGED
@@ -51,6 +51,8 @@ module Agents
51
51
  temperature: @temperature,
52
52
  model: @model.id,
53
53
  connection: @connection,
54
+ params: @params,
55
+ schema: @schema,
54
56
  &block
55
57
  )
56
58
  @on[:end_message]&.call(response)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Agents
4
- VERSION = "0.4.2"
4
+ VERSION = "0.4.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ai-agents
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shivam Mishra