ticuna 0.1.0 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8a828730dc99a8d166af1e48f840301001cbfed6951f50d29c235d4cbbdb1bfa
4
- data.tar.gz: 47d9fb80dfd2b817eeed4c613990eef38acf0c25d75ef350c88ef845e57aa794
3
+ metadata.gz: e437b292297ce9fb31d37e3ad84e7d314f673bd0dab8a511ae8df35b737f17cf
4
+ data.tar.gz: 19fd66d1964c4655fc8e7cab7d8a461de5a90fc4e4dd31a0a28bc81c5864f4d9
5
5
  SHA512:
6
- metadata.gz: f8be7fd49108471209f87b519c0cf6201d16923b1b148106b3a5e3530d7954de6767d974889dada6da9f220093f26b362b93e054f9cc249e97c744d778db8496
7
- data.tar.gz: ab30ecd88ab19200b9a3445443e8a8badb57d9120db141a3a132d4503ab9a991cc62cd89eb3d95ab48d69237300096aa563f8b93da82841782fc4ac6e05ed907
6
+ metadata.gz: 0ef912de56ab1e96259632020d089808548e9734663a0950eebbb918815c74429a4003b078db2183407bf0be1cdcf9dbfbadd332384c0f3958dbe7af0fe4c92c
7
+ data.tar.gz: 8bbac24142de3cb268ac0b5968d2cbabca5adb4dd0357478758a7e3002f4628426a4dc10cda3af21889f4dafcc77a158c97ce31143ea9c55df046f9f98e24cb9
data/lib/ticuna/llm.rb CHANGED
@@ -66,11 +66,11 @@ module Ticuna
66
66
 
67
67
  case valid.size
68
68
  when 0
69
- raise "Provider not found. Define at least one ENV with token."
69
+ raise "Provider not found. Define at least one in config/initializers/ticuna.rb"
70
70
  when 1
71
- valid.keys.firstraise
71
+ valid.keys.first
72
72
  else
73
- raise "Multiple providers detected: #{valid.keys.join(", ")}. Define one in Ticuna::LLM.new(provider: :provider_name)."
73
+ raise "Multiple LLM APIs providers detected: #{valid.keys.join(", ")}. Define one in Ticuna::LLM.new(provider: :provider_name)."
74
74
  end
75
75
  end
76
76
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ticuna
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ticuna
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chirana
8
+ autorequire:
8
9
  bindir: exe
9
10
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
11
+ date: 2025-10-06 00:00:00.000000000 Z
11
12
  dependencies:
12
13
  - !ruby/object:Gem::Dependency
13
14
  name: faraday
@@ -55,6 +56,7 @@ metadata:
55
56
  homepage_uri: https://github.com/thiagochirana/ticuna
56
57
  source_code_uri: https://github.com/thiagochirana/ticuna
57
58
  changelog_uri: https://github.com/thiagochirana/ticuna/blob/main/CHANGELOG.md
59
+ post_install_message:
58
60
  rdoc_options: []
59
61
  require_paths:
60
62
  - lib
@@ -62,14 +64,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
64
  requirements:
63
65
  - - ">="
64
66
  - !ruby/object:Gem::Version
65
- version: 3.4.0
67
+ version: 3.1.0
66
68
  required_rubygems_version: !ruby/object:Gem::Requirement
67
69
  requirements:
68
70
  - - ">="
69
71
  - !ruby/object:Gem::Version
70
72
  version: '0'
71
73
  requirements: []
72
- rubygems_version: 3.6.9
74
+ rubygems_version: 3.3.27
75
+ signing_key:
73
76
  specification_version: 4
74
77
  summary: Ruby Agents with AI
75
78
  test_files: []