lex-llm-openai 0.3.6 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8cc102a70c5d99414bb836b6b9204a1c031a9f98072b5430e824b2ae944cd44a
4
- data.tar.gz: 0d6cd458a0812c8767bef92785026a17ae1fa465aecd84801cbca27070570706
3
+ metadata.gz: f49ee94d59da872cc2bb8095bbe619329caecf38f178f1b4c183c626f1f8168c
4
+ data.tar.gz: 674527b56d8bb6c72a0052bdad2254356e635926b37a1810bea56563f94418be
5
5
  SHA512:
6
- metadata.gz: db59247eafd9bd082806e464602315660dd7b3d1871c894acc85dae76db7ad9f5a58a94284c3b47b2fd5cc923dee9e76101f9c1df064bb18718d474999fa0d28
7
- data.tar.gz: 35f02198724ba77c8b2a329c11c5aa9fe0d106d2a93a140f0a7d88041246d6c01c09d9a23a354d844638041744526280b671c186770c77ab3f2ccae7dc5d9950
6
+ metadata.gz: 7dd8317307365087f1279f25f3c263d5dc57dc7c73487f9073d6c77d8a542f335aaf3ed2a4b176f9aee9a1ec59bd5f6269a2cf27845dff9cb73dd8ddbb898833
7
+ data.tar.gz: 88c350e3870a694eabde6c04580191bc11dcc0f48171df3d37c31f91b8b0c97800a411d78f65d0856304e7710b5420f83ee66514c230ba3a22f75f9afe0b062b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.7 - 2026-05-08
4
+
5
+ - Accept keyword arguments in `list_models` to match the base provider contract called by `discover_offerings`.
6
+
3
7
  ## 0.3.6 - 2026-05-06
4
8
 
5
9
  - Load provider-owned fleet actors through the LegionIO subscription base and the canonical OpenAI provider root.
@@ -180,7 +180,7 @@ module Legion
180
180
  raise
181
181
  end
182
182
 
183
- def list_models
183
+ def list_models(**)
184
184
  log.info('Listing OpenAI models')
185
185
  raw = connection.get(models_url)
186
186
  models = build_model_infos(raw.body)
@@ -4,7 +4,7 @@ module Legion
4
4
  module Extensions
5
5
  module Llm
6
6
  module Openai
7
- VERSION = '0.3.6'
7
+ VERSION = '0.3.7'
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lex-llm-openai
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - LegionIO