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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 931f6b078e6df954f5ab32218cb31c4c743112ed6ae037c3e027102cec3089d4
|
|
4
|
+
data.tar.gz: 52febe0e221d964ad286ce8ad7ebb0ad595a8d80b87a4afa55af54e82e82873d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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)
|