legion-tty 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 04c412dfdca2f44d48e45caaf6dbd086e191b4fc403513798852a695892d976b
4
- data.tar.gz: 1bf491cae65f9fc1f89059a1d2796e81c4edbb634adbd8dd115f3bab0f04f33e
3
+ metadata.gz: 1c760495a859fdc2a4bf7fd578a07a1d5fda5502959a032d97b123bd2567f6fe
4
+ data.tar.gz: e0338b1750ee30726575319555ce2e57011d2c503843433ef4a5282fba0b3101
5
5
  SHA512:
6
- metadata.gz: fd44868ba314487524945f1f86c99faaa6f62f8028aa3bbe868587f11c589ff5c78163910d3aa64bab9ee2ff057166e6e6578a9824fa8e4553f1b37e457ad049
7
- data.tar.gz: 210be4228de8843e19b59d2646bad9bef38f11f19b29e5c49810a7ae30419642d3dedba241b99fd6147c529a10c2b81b68c23d377c1f0fcc8255db2cacfbca84
6
+ metadata.gz: 651364d8929e747cbaa2aa06b76a0e9da6f81ff581778f4061bbc8a0ae0befd7de2590ceb2e0cc139cdc30cb5341f9f66420c37be7d5a368661f9f2b2077fa50
7
+ data.tar.gz: 457b264da15403f4b0c7605fe8db84171c4fade505cc0cda2399f23314a944f3826c0ad6ac79be7c4b18d0257e68ebf8254e1daa7426434b3a9ff79453b4a0fc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.7] - 2026-03-18
4
+
5
+ ### Added
6
+ - AWS Bedrock provider option in wizard prompt
7
+ - Skip for now option in provider selection (both static and dynamic paths)
8
+
3
9
  ## [0.2.6] - 2026-03-18
4
10
 
5
11
  ### Fixed
@@ -11,7 +11,9 @@ module Legion
11
11
  'OpenAI' => 'openai',
12
12
  'Gemini (Google)' => 'gemini',
13
13
  'Azure OpenAI' => 'azure',
14
- 'Local (Ollama/LM Studio)' => 'local'
14
+ 'AWS Bedrock' => 'bedrock',
15
+ 'Local (Ollama/LM Studio)' => 'local',
16
+ 'Skip for now' => nil
15
17
  }.freeze
16
18
 
17
19
  def initialize(prompt: nil)
@@ -69,6 +71,7 @@ module Legion
69
71
  choices = working_providers.map do |p|
70
72
  { name: "#{p[:name]} (#{p[:model]}, #{p[:latency_ms]}ms)", value: p[:name] }
71
73
  end
74
+ choices << { name: 'Skip for now', value: nil }
72
75
  @prompt.select('Multiple providers available. Choose your default:', choices)
73
76
  end
74
77
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Legion
4
4
  module TTY
5
- VERSION = '0.2.6'
5
+ VERSION = '0.2.7'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: legion-tty
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity