lex-llm-ollama 0.2.6 → 0.2.7
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/legion/extensions/llm/ollama/provider.rb +1 -1
- data/lib/legion/extensions/llm/ollama/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd3556fdfe59e46af218aa97edcc1f81b3ffb39c8af1c144f4b3f0e23bf17bea
|
|
4
|
+
data.tar.gz: cff453247d66070976c3cb74e1f5524e718fbded408d340dc7cb74892750b39c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3cac452d99bfb4e0c34285b38979a59e0937a98b3dac849fa401fde6022d9e04887062b062185199294c6d4dafe1ea5f65c9fdbb9be4b5e3cfb0fcbfd9a1159
|
|
7
|
+
data.tar.gz: ecbd0541f0ca31ee2979f1424034fd719533d0f86b6631be510ff696b775ee23b4a314bf86596e3062c223a90d3b65d4bc5a1b30c5f69833cf7596cea00295fe
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.7 - 2026-05-07
|
|
4
|
+
|
|
5
|
+
- Render Ollama embedding payloads with the canonical model id when callers pass `Model::Info` objects.
|
|
6
|
+
|
|
3
7
|
## 0.2.6 - 2026-05-06
|
|
4
8
|
|
|
5
9
|
- Load provider-owned fleet actors through the LegionIO subscription base and the canonical Ollama provider root.
|
|
@@ -289,7 +289,7 @@ module Legion
|
|
|
289
289
|
end
|
|
290
290
|
|
|
291
291
|
def render_embedding_payload(text, model:, dimensions:)
|
|
292
|
-
{ model: model, input: text, dimensions: dimensions }.compact
|
|
292
|
+
{ model: model.respond_to?(:id) ? model.id : model, input: text, dimensions: dimensions }.compact
|
|
293
293
|
end
|
|
294
294
|
|
|
295
295
|
def parse_embedding_response(response, model:, text:)
|