llm_meta_client 0.6.0 → 0.6.1

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: 2e6f2472a161a70eb1e9aa1af8495c25a9a7229d0351663f2b8784759377e813
4
- data.tar.gz: 7830a137d1a7751942a314e5271a98e5db27aa105aa36885f2a753b02f63f9a3
3
+ metadata.gz: 931f6b078e6df954f5ab32218cb31c4c743112ed6ae037c3e027102cec3089d4
4
+ data.tar.gz: 52febe0e221d964ad286ce8ad7ebb0ad595a8d80b87a4afa55af54e82e82873d
5
5
  SHA512:
6
- metadata.gz: 8b16d80ac8a8f96fbf3545688a8657ed12ad2ef298707ee6475789b9468399a314b494f7d01e829557039dc11985702fbf1b4a6f1f8f67dab8f9908395fdf1d0
7
- data.tar.gz: c335cf07ce4e413b7251fdc75ea41d227b89e86ebca4f6e44a526cd8fbb6f44dc3185851d2b1055cf20ae86ee1658e1fd2138924da0370da2d33127699c18fb6
6
+ metadata.gz: 6216c95f340ae0ef1b3e9ee54bd8a0906c2001d50ac45139df4f8da584c856962b462182e7fcc20e94c8785e6923f50f04882bf534da300bc8946fef5308cfa1
7
+ data.tar.gz: 2223f1a7381b9bdb484a1ec8fade18c5b83789b007b6f078680887a81db4c6a5854572310a108864eba89656cff980359b9602e14a9cdae752d8d0ad98d7a48e
data/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ 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.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.6.1] - 2026-03-19
9
+
10
+ ### Fixed
11
+
12
+ - Fix remaining `prompt_manager_prompt_execution` reference in chat model template (renamed to `prompt_navigator_prompt_execution`)
13
+
8
14
  ## [0.6.0] - 2026-03-18
9
15
 
10
16
  ### Changed
@@ -131,7 +131,7 @@ class Chat < ApplicationRecord
131
131
 
132
132
  # Build prompt and context from direct lineage via PromptExecution
133
133
  last_msg = ordered_messages.last
134
- pe = last_msg.prompt_manager_prompt_execution
134
+ pe = last_msg.prompt_navigator_prompt_execution
135
135
 
136
136
  prompt = { role: last_msg.role, prompt: pe.prompt }
137
137
  context = pe.build_context(limit: Rails.configuration.summarize_conversation_count)
@@ -1,3 +1,3 @@
1
1
  module LlmMetaClient
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: llm_meta_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - dhq_boiler