open_router 0.3.1 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a5b9e865727928cf848ac7358a9d5b4fc5531885151549d4f872088761497a5e
4
- data.tar.gz: 79696ceb293c5123529bdd50bc5ed99bbd324e0b68cc1a174ecec5f53db15026
3
+ metadata.gz: 1773f2cff533a7439d354cd4d9fa42214d643f3f20863afc4a7f5d7acf97afd3
4
+ data.tar.gz: 4cab37fcd901e07dcbdb126d25004f7d09a3da6b9e69ca5253369c775aedc6a8
5
5
  SHA512:
6
- metadata.gz: 70738504ab35189048b1eb76d7f52c7e3421876b3bab31792af0afbe013ca0d2d27abaafd2cd07fc7c7d2942333b68d8170b51729bb5a32606188f702d4a6eca
7
- data.tar.gz: 47155d2a9ef577daaa979776838a51ae9107294d8e370e4a7ad3fc3b8099589def7f40d96f44f2bf2fcdd9126a46562d7d54a7ab43778906c13d6ab409228cb7
6
+ metadata.gz: b6db1bab41944573d6e848d4369e68da6a46987e5460efe8aac9e6fcdbfdf7133699a19e674cc5e95f3a635832d17d9838b9d13c81c7f10b76c7d8f894687118
7
+ data.tar.gz: d6b7696c301960da0f35cf342ac184b3c9d2f811fd84f56bab2b07e7682c4ca3165c2a89c1c69855afd04665592a7bfd99fc31b3165ef818670dbe207c122877
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- open_router (0.3.0)
4
+ open_router (0.3.2)
5
5
  activesupport (>= 6.0)
6
6
  dotenv (>= 2)
7
7
  faraday (>= 1)
@@ -44,7 +44,9 @@ module OpenRouter
44
44
  post(path: "/chat/completions", parameters:).tap do |response|
45
45
  raise ServerError, response.dig("error", "message") if response.presence&.dig("error", "message").present?
46
46
  raise ServerError, "Empty response from OpenRouter. Might be worth retrying once or twice." if stream.blank? && response.blank?
47
- end.with_indifferent_access
47
+
48
+ return response.with_indifferent_access if response.is_a?(Hash)
49
+ end
48
50
  end
49
51
 
50
52
  # Fetches the list of available models from the OpenRouter API.
@@ -72,7 +72,9 @@ module OpenRouter
72
72
  def headers
73
73
  {
74
74
  "Authorization" => "Bearer #{OpenRouter.configuration.access_token}",
75
- "Content-Type" => "application/json"
75
+ "Content-Type" => "application/json",
76
+ "X-Title" => "OpenRouter Ruby Client",
77
+ "HTTP-Referer" => "https://github.com/OlympiaAI/open_router"
76
78
  }.merge(OpenRouter.configuration.extra_headers)
77
79
  end
78
80
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module OpenRouter
4
- VERSION = "0.3.1"
4
+ VERSION = "0.3.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: open_router
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Obie Fernandez