gemini_craft 0.1.1 → 0.1.2
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/lib/gemini_craft/configuration.rb +1 -1
- data/lib/gemini_craft/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 272eb66f29c87c7681a0f703ac2d3d697ef6ce23a6f067565179b623adfa6d85
|
4
|
+
data.tar.gz: 6ccdc9d479c0fa4f2d28b15d9e45c72115ae841f28d2163cff367875b565dfb3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c9344da16d0a82761e10bcff5717ea5ca0c4b9dc31386e7814668875abcc2d2e3d916a95c18ef80154feaf4a659d7667a8e97f0f99c4ab39f70fe78f8487fa27
|
7
|
+
data.tar.gz: bd822c34dc245184c0fc7c4843898d93fc20c4dae4a0771df7be3ef9885712ecd4c1874446646952984bc639de4e340856f3d5f60249634a354b3bf1f899ea5b
|
@@ -7,7 +7,7 @@ module GeminiCraft
|
|
7
7
|
|
8
8
|
# Initialize a new configuration with default values
|
9
9
|
def initialize
|
10
|
-
@api_key = ENV
|
10
|
+
@api_key = ENV.fetch("GEMINI_API_KEY", nil)
|
11
11
|
@api_base_url = "https://generativelanguage.googleapis.com/v1beta"
|
12
12
|
@model = "gemini-2.0-flash"
|
13
13
|
@timeout = 30
|
data/lib/gemini_craft/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gemini_craft
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shobhit Jain
|
@@ -175,6 +175,7 @@ metadata:
|
|
175
175
|
homepage_uri: https://github.com/shobhits7/gemini_craft
|
176
176
|
source_code_uri: https://github.com/shobhits7/gemini_craft
|
177
177
|
changelog_uri: https://github.com/shobhits7/gemini_craft/blob/main/CHANGELOG.md
|
178
|
+
rubygems_mfa_required: 'true'
|
178
179
|
post_install_message:
|
179
180
|
rdoc_options: []
|
180
181
|
require_paths:
|