ticuna 0.2.2 → 0.2.2.1

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: '058bd0a97b93a756f03650373f98ba045b49a7b72499d8fd259d3520ab375fcd'
4
- data.tar.gz: 1377d3415e111d5ed72cee4e68f9ff9b98f4a1d947c6bbb854820d8abe82e765
3
+ metadata.gz: 46053c8ca4e56699fd4f494e270efe169e62b10d713bc13361012d9314eb42f0
4
+ data.tar.gz: edabf92712b4f958a38875419fa8e6441a92bd39e41b7f1a567ea95c9df37de5
5
5
  SHA512:
6
- metadata.gz: 41144c5b7ba4226d026d055f33a960174dc7cde8e726dc68f19d2abc44dfda5cbf14fac3fe1f7bbdbd4c8b51d126712200fba3902f9d4e88dc1846f9eede7355
7
- data.tar.gz: a1d5312ecfb22e1f7fa99ae35bc1057a9aff4e5aae60faa227dbbe8d95f59eb31526126da0aa0cbdf2ac51e34b9958abfe03749064fe59058dfd42686f01bf07
6
+ metadata.gz: 12296fe8340945367840b05084c3ead8d512fbcc7d850b9dc1a6492e741f18674accb5832465d3e3102d1020f2499f0325bacd2c372d4a420f256051b0968df9
7
+ data.tar.gz: 501d2f6c172f9ef7fc12a4a8c2e412b689f957ce15837ffdd668b4944105b95beb0c37c734cb0c6c3bef16182519105f882adf4b3d12cf208b0f402c9e9527f7
data/CHANGELOG.md CHANGED
@@ -16,3 +16,6 @@
16
16
 
17
17
  ## [0.2.2] - 2025-10-06
18
18
  - Add support for OpenAI with stream and output_format (json or text), [PR here](https://github.com/thiagochirana/ticuna/pull/2)
19
+
20
+ ## [0.2.2.1] - 2025-10-06
21
+ - Remove timeout for requests
@@ -15,7 +15,10 @@ module Ticuna
15
15
  "Content-Type" => "application/json",
16
16
  "Authorization" => "Bearer #{api_key}"
17
17
  }
18
- )
18
+ ) do |f|
19
+ f.options.timeout = nil
20
+ f.options.open_timeout = nil
21
+ end
19
22
  end
20
23
  end
21
24
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ticuna
4
- VERSION = "0.2.2"
4
+ VERSION = "0.2.2.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ticuna
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chirana