Class: OpenAI::HTTPClient::Request
- Inherits:
-
Object
- Object
- OpenAI::HTTPClient::Request
- Defined in:
- lib/openai/http_client.rb,
sig/openai/http_client.rbs
Overview
An HTTP request prepared by the SDK.
Instance Attribute Summary collapse
- #body ⇒ Object? readonly
- #headers ⇒ Hash{String=>String} readonly
- #method ⇒ Symbol readonly
- #timeout ⇒ Float? readonly
- #url ⇒ URI::Generic readonly
Instance Method Summary collapse
-
#initialize(method:, url:, headers:, body:, timeout:) ⇒ Request
constructor
A new instance of Request.
Constructor Details
#initialize(method:, url:, headers:, body:, timeout:) ⇒ Request
Returns a new instance of Request.
166 167 168 169 170 171 172 173 |
# File 'lib/openai/http_client.rb', line 166 def initialize(method:, url:, headers:, body:, timeout:) @method = method @url = url @headers = headers.dup.freeze @body = body @timeout = timeout freeze end |
Instance Attribute Details
#body ⇒ Object? (readonly)
156 157 158 |
# File 'lib/openai/http_client.rb', line 156 def body @body end |
#headers ⇒ Hash{String=>String} (readonly)
153 154 155 |
# File 'lib/openai/http_client.rb', line 153 def headers @headers end |
#method ⇒ Symbol (readonly)
147 148 149 |
# File 'lib/openai/http_client.rb', line 147 def method @method end |
#timeout ⇒ Float? (readonly)
159 160 161 |
# File 'lib/openai/http_client.rb', line 159 def timeout @timeout end |
#url ⇒ URI::Generic (readonly)
150 151 152 |
# File 'lib/openai/http_client.rb', line 150 def url @url end |