lex-llm-ollama 0.2.12 → 0.2.13
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: 8edb9398901726a46e399fd9a7ab11a9686c3cf76bd6cd7efc2cc48c89005230
|
|
4
|
+
data.tar.gz: 89e29c003fac6d296e26f9214cde4f93c499cb5f8ccaa065d8270a587f6bb9f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9a7f5bb4fd18596bec2b301fd92ed49cf4c2fdb77d592d85ef54c834bef8f5a4770c3c7b773c8a50a84737595309439826e6a4c110cf62497c8a61242251edb
|
|
7
|
+
data.tar.gz: 927d0afc66e6ef69fbf3754defdbb03e4ff6891d71046c4bf722d88cf5c56ec32b573fa4066ce9421c2a51e1b596378f9f8cd906df8f0ea37da9546bd1b610f2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.13 - 2026-06-02
|
|
4
|
+
|
|
5
|
+
- **Scope discovery refresh to Ollama only** — `DiscoveryRefresh#manual` now calls `Discovery.refresh_discovered_models!(provider: :ollama)` instead of `Discovery.run`, which previously triggered model discovery for all registered providers (anthropic, bedrock, etc.) and caused cross-provider coupling
|
|
6
|
+
|
|
3
7
|
## 0.2.12 - 2026-05-21
|
|
4
8
|
|
|
5
9
|
- Add `default_transport`/`default_tier` class declarations, remove duplicate instance methods
|
|
@@ -35,7 +35,7 @@ module Legion
|
|
|
35
35
|
log.debug('[ollama][discovery_refresh] refreshing model list')
|
|
36
36
|
return unless defined?(Legion::LLM::Discovery)
|
|
37
37
|
|
|
38
|
-
Legion::LLM::Discovery.
|
|
38
|
+
Legion::LLM::Discovery.refresh_discovered_models!(provider: :ollama)
|
|
39
39
|
if defined?(Legion::LLM::Router) && Legion::LLM::Router.respond_to?(:populate_auto_rules)
|
|
40
40
|
Legion::LLM::Router.populate_auto_rules(Legion::LLM::Discovery.discovered_instances)
|
|
41
41
|
end
|