anthropic 0.4.0 → 1.0.0

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.
Files changed (811) hide show
  1. checksums.yaml +4 -4
  2. data/.ignore +2 -0
  3. data/CHANGELOG.md +639 -24
  4. data/README.md +255 -274
  5. data/SECURITY.md +27 -0
  6. data/lib/anthropic/bedrock.rb +5 -0
  7. data/lib/anthropic/client.rb +90 -95
  8. data/lib/anthropic/errors.rb +192 -0
  9. data/lib/anthropic/file_part.rb +55 -0
  10. data/lib/anthropic/helpers/bedrock/client.rb +259 -0
  11. data/lib/anthropic/helpers/vertex/client.rb +218 -0
  12. data/lib/anthropic/internal/jsonl_stream.rb +26 -0
  13. data/lib/anthropic/internal/page.rb +99 -0
  14. data/lib/anthropic/internal/stream.rb +58 -0
  15. data/lib/anthropic/internal/transport/base_client.rb +558 -0
  16. data/lib/anthropic/internal/transport/pooled_net_requester.rb +209 -0
  17. data/lib/anthropic/internal/type/array_of.rb +162 -0
  18. data/lib/anthropic/internal/type/base_model.rb +481 -0
  19. data/lib/anthropic/internal/type/base_page.rb +55 -0
  20. data/lib/anthropic/internal/type/base_stream.rb +90 -0
  21. data/lib/anthropic/internal/type/boolean.rb +71 -0
  22. data/lib/anthropic/internal/type/converter.rb +292 -0
  23. data/lib/anthropic/internal/type/enum.rb +145 -0
  24. data/lib/anthropic/internal/type/file_input.rb +103 -0
  25. data/lib/anthropic/internal/type/hash_of.rb +182 -0
  26. data/lib/anthropic/internal/type/request_parameters.rb +42 -0
  27. data/lib/anthropic/internal/type/union.rb +252 -0
  28. data/lib/anthropic/internal/type/unknown.rb +75 -0
  29. data/lib/anthropic/internal/util.rb +907 -0
  30. data/lib/anthropic/internal.rb +20 -0
  31. data/lib/anthropic/models/anthropic_beta.rb +47 -0
  32. data/lib/anthropic/models/api_error_object.rb +21 -0
  33. data/lib/anthropic/models/authentication_error.rb +21 -0
  34. data/lib/anthropic/models/base64_image_source.rb +40 -0
  35. data/lib/anthropic/models/base64_pdf_source.rb +27 -0
  36. data/lib/anthropic/models/beta/beta_base64_image_source.rb +44 -0
  37. data/lib/anthropic/models/beta/beta_base64_pdf_block.rb +73 -0
  38. data/lib/anthropic/models/beta/beta_base64_pdf_source.rb +31 -0
  39. data/lib/anthropic/models/beta/beta_cache_control_ephemeral.rb +19 -0
  40. data/lib/anthropic/models/beta/beta_citation_char_location.rb +49 -0
  41. data/lib/anthropic/models/beta/beta_citation_char_location_param.rb +49 -0
  42. data/lib/anthropic/models/beta/beta_citation_content_block_location.rb +49 -0
  43. data/lib/anthropic/models/beta/beta_citation_content_block_location_param.rb +49 -0
  44. data/lib/anthropic/models/beta/beta_citation_page_location.rb +49 -0
  45. data/lib/anthropic/models/beta/beta_citation_page_location_param.rb +49 -0
  46. data/lib/anthropic/models/beta/beta_citation_web_search_result_location_param.rb +43 -0
  47. data/lib/anthropic/models/beta/beta_citations_config_param.rb +19 -0
  48. data/lib/anthropic/models/beta/beta_citations_delta.rb +43 -0
  49. data/lib/anthropic/models/beta/beta_citations_web_search_result_location.rb +43 -0
  50. data/lib/anthropic/models/beta/beta_content_block.rb +30 -0
  51. data/lib/anthropic/models/beta/beta_content_block_param.rb +36 -0
  52. data/lib/anthropic/models/beta/beta_content_block_source.rb +41 -0
  53. data/lib/anthropic/models/beta/beta_content_block_source_content.rb +22 -0
  54. data/lib/anthropic/models/beta/beta_image_block_param.rb +48 -0
  55. data/lib/anthropic/models/beta/beta_input_json_delta.rb +25 -0
  56. data/lib/anthropic/models/beta/beta_message.rb +148 -0
  57. data/lib/anthropic/models/beta/beta_message_delta_usage.rb +52 -0
  58. data/lib/anthropic/models/beta/beta_message_param.rb +52 -0
  59. data/lib/anthropic/models/beta/beta_message_tokens_count.rb +25 -0
  60. data/lib/anthropic/models/beta/beta_metadata.rb +27 -0
  61. data/lib/anthropic/models/beta/beta_model_info.rb +51 -0
  62. data/lib/anthropic/models/beta/beta_plain_text_source.rb +31 -0
  63. data/lib/anthropic/models/beta/beta_raw_content_block_delta.rb +28 -0
  64. data/lib/anthropic/models/beta/beta_raw_content_block_delta_event.rb +31 -0
  65. data/lib/anthropic/models/beta/beta_raw_content_block_start_event.rb +53 -0
  66. data/lib/anthropic/models/beta/beta_raw_content_block_stop_event.rb +25 -0
  67. data/lib/anthropic/models/beta/beta_raw_message_delta_event.rb +68 -0
  68. data/lib/anthropic/models/beta/beta_raw_message_start_event.rb +25 -0
  69. data/lib/anthropic/models/beta/beta_raw_message_stop_event.rb +19 -0
  70. data/lib/anthropic/models/beta/beta_raw_message_stream_event.rb +30 -0
  71. data/lib/anthropic/models/beta/beta_redacted_thinking_block.rb +25 -0
  72. data/lib/anthropic/models/beta/beta_redacted_thinking_block_param.rb +25 -0
  73. data/lib/anthropic/models/beta/beta_server_tool_usage.rb +20 -0
  74. data/lib/anthropic/models/beta/beta_server_tool_use_block.rb +37 -0
  75. data/lib/anthropic/models/beta/beta_server_tool_use_block_param.rb +48 -0
  76. data/lib/anthropic/models/beta/beta_signature_delta.rb +25 -0
  77. data/lib/anthropic/models/beta/beta_stop_reason.rb +23 -0
  78. data/lib/anthropic/models/beta/beta_text_block.rb +43 -0
  79. data/lib/anthropic/models/beta/beta_text_block_param.rb +43 -0
  80. data/lib/anthropic/models/beta/beta_text_citation.rb +26 -0
  81. data/lib/anthropic/models/beta/beta_text_citation_param.rb +26 -0
  82. data/lib/anthropic/models/beta/beta_text_delta.rb +25 -0
  83. data/lib/anthropic/models/beta/beta_thinking_block.rb +31 -0
  84. data/lib/anthropic/models/beta/beta_thinking_block_param.rb +31 -0
  85. data/lib/anthropic/models/beta/beta_thinking_config_disabled.rb +19 -0
  86. data/lib/anthropic/models/beta/beta_thinking_config_enabled.rb +38 -0
  87. data/lib/anthropic/models/beta/beta_thinking_config_param.rb +31 -0
  88. data/lib/anthropic/models/beta/beta_thinking_delta.rb +25 -0
  89. data/lib/anthropic/models/beta/beta_tool.rb +96 -0
  90. data/lib/anthropic/models/beta/beta_tool_bash_20241022.rb +40 -0
  91. data/lib/anthropic/models/beta/beta_tool_bash_20250124.rb +40 -0
  92. data/lib/anthropic/models/beta/beta_tool_choice.rb +32 -0
  93. data/lib/anthropic/models/beta/beta_tool_choice_any.rb +35 -0
  94. data/lib/anthropic/models/beta/beta_tool_choice_auto.rb +35 -0
  95. data/lib/anthropic/models/beta/beta_tool_choice_none.rb +21 -0
  96. data/lib/anthropic/models/beta/beta_tool_choice_tool.rb +43 -0
  97. data/lib/anthropic/models/beta/beta_tool_computer_use_20241022.rb +64 -0
  98. data/lib/anthropic/models/beta/beta_tool_computer_use_20250124.rb +64 -0
  99. data/lib/anthropic/models/beta/beta_tool_result_block_param.rb +79 -0
  100. data/lib/anthropic/models/beta/beta_tool_text_editor_20241022.rb +40 -0
  101. data/lib/anthropic/models/beta/beta_tool_text_editor_20250124.rb +40 -0
  102. data/lib/anthropic/models/beta/beta_tool_union.rb +32 -0
  103. data/lib/anthropic/models/beta/beta_tool_use_block.rb +37 -0
  104. data/lib/anthropic/models/beta/beta_tool_use_block_param.rb +48 -0
  105. data/lib/anthropic/models/beta/beta_url_image_source.rb +25 -0
  106. data/lib/anthropic/models/beta/beta_url_pdf_source.rb +25 -0
  107. data/lib/anthropic/models/beta/beta_usage.rb +52 -0
  108. data/lib/anthropic/models/beta/beta_web_search_result_block.rb +43 -0
  109. data/lib/anthropic/models/beta/beta_web_search_result_block_param.rb +43 -0
  110. data/lib/anthropic/models/beta/beta_web_search_tool_20250305.rb +126 -0
  111. data/lib/anthropic/models/beta/beta_web_search_tool_request_error.rb +39 -0
  112. data/lib/anthropic/models/beta/beta_web_search_tool_result_block.rb +31 -0
  113. data/lib/anthropic/models/beta/beta_web_search_tool_result_block_content.rb +24 -0
  114. data/lib/anthropic/models/beta/beta_web_search_tool_result_block_param.rb +41 -0
  115. data/lib/anthropic/models/beta/beta_web_search_tool_result_block_param_content.rb +26 -0
  116. data/lib/anthropic/models/beta/beta_web_search_tool_result_error.rb +39 -0
  117. data/lib/anthropic/models/beta/message_count_tokens_params.rb +292 -0
  118. data/lib/anthropic/models/beta/message_create_params.rb +351 -0
  119. data/lib/anthropic/models/beta/messages/batch_cancel_params.rb +26 -0
  120. data/lib/anthropic/models/beta/messages/batch_create_params.rb +424 -0
  121. data/lib/anthropic/models/beta/messages/batch_delete_params.rb +26 -0
  122. data/lib/anthropic/models/beta/messages/batch_list_params.rb +57 -0
  123. data/lib/anthropic/models/beta/messages/batch_results_params.rb +26 -0
  124. data/lib/anthropic/models/beta/messages/batch_retrieve_params.rb +26 -0
  125. data/lib/anthropic/models/beta/messages/beta_deleted_message_batch.rb +34 -0
  126. data/lib/anthropic/models/beta/messages/beta_message_batch.rb +133 -0
  127. data/lib/anthropic/models/beta/messages/beta_message_batch_canceled_result.rb +19 -0
  128. data/lib/anthropic/models/beta/messages/beta_message_batch_errored_result.rb +25 -0
  129. data/lib/anthropic/models/beta/messages/beta_message_batch_expired_result.rb +19 -0
  130. data/lib/anthropic/models/beta/messages/beta_message_batch_individual_response.rb +43 -0
  131. data/lib/anthropic/models/beta/messages/beta_message_batch_request_counts.rb +63 -0
  132. data/lib/anthropic/models/beta/messages/beta_message_batch_result.rb +31 -0
  133. data/lib/anthropic/models/beta/messages/beta_message_batch_succeeded_result.rb +25 -0
  134. data/lib/anthropic/models/beta/model_list_params.rb +55 -0
  135. data/lib/anthropic/models/beta/model_retrieve_params.rb +24 -0
  136. data/lib/anthropic/models/beta_api_error.rb +21 -0
  137. data/lib/anthropic/models/beta_authentication_error.rb +21 -0
  138. data/lib/anthropic/models/beta_billing_error.rb +21 -0
  139. data/lib/anthropic/models/beta_error.rb +32 -0
  140. data/lib/anthropic/models/beta_error_response.rb +21 -0
  141. data/lib/anthropic/models/beta_gateway_timeout_error.rb +21 -0
  142. data/lib/anthropic/models/beta_invalid_request_error.rb +21 -0
  143. data/lib/anthropic/models/beta_not_found_error.rb +21 -0
  144. data/lib/anthropic/models/beta_overloaded_error.rb +21 -0
  145. data/lib/anthropic/models/beta_permission_error.rb +21 -0
  146. data/lib/anthropic/models/beta_rate_limit_error.rb +21 -0
  147. data/lib/anthropic/models/billing_error.rb +21 -0
  148. data/lib/anthropic/models/cache_control_ephemeral.rb +15 -0
  149. data/lib/anthropic/models/citation_char_location.rb +45 -0
  150. data/lib/anthropic/models/citation_char_location_param.rb +45 -0
  151. data/lib/anthropic/models/citation_content_block_location.rb +45 -0
  152. data/lib/anthropic/models/citation_content_block_location_param.rb +45 -0
  153. data/lib/anthropic/models/citation_page_location.rb +45 -0
  154. data/lib/anthropic/models/citation_page_location_param.rb +45 -0
  155. data/lib/anthropic/models/citation_web_search_result_location_param.rb +39 -0
  156. data/lib/anthropic/models/citations_config_param.rb +15 -0
  157. data/lib/anthropic/models/citations_delta.rb +39 -0
  158. data/lib/anthropic/models/citations_web_search_result_location.rb +39 -0
  159. data/lib/anthropic/models/completion.rb +66 -0
  160. data/lib/anthropic/models/completion_create_params.rb +133 -0
  161. data/lib/anthropic/models/content_block.rb +26 -0
  162. data/lib/anthropic/models/content_block_param.rb +32 -0
  163. data/lib/anthropic/models/content_block_source.rb +37 -0
  164. data/lib/anthropic/models/content_block_source_content.rb +18 -0
  165. data/lib/anthropic/models/document_block_param.rb +69 -0
  166. data/lib/anthropic/models/error_object.rb +32 -0
  167. data/lib/anthropic/models/error_response.rb +21 -0
  168. data/lib/anthropic/models/gateway_timeout_error.rb +21 -0
  169. data/lib/anthropic/models/image_block_param.rb +44 -0
  170. data/lib/anthropic/models/input_json_delta.rb +21 -0
  171. data/lib/anthropic/models/invalid_request_error.rb +21 -0
  172. data/lib/anthropic/models/message.rb +144 -0
  173. data/lib/anthropic/models/message_count_tokens_params.rb +254 -0
  174. data/lib/anthropic/models/message_count_tokens_tool.rb +20 -0
  175. data/lib/anthropic/models/message_create_params.rb +339 -0
  176. data/lib/anthropic/models/message_delta_usage.rb +48 -0
  177. data/lib/anthropic/models/message_param.rb +49 -0
  178. data/lib/anthropic/models/message_tokens_count.rb +21 -0
  179. data/lib/anthropic/models/messages/batch_cancel_params.rb +16 -0
  180. data/lib/anthropic/models/messages/batch_create_params.rb +406 -0
  181. data/lib/anthropic/models/messages/batch_delete_params.rb +16 -0
  182. data/lib/anthropic/models/messages/batch_list_params.rb +47 -0
  183. data/lib/anthropic/models/messages/batch_results_params.rb +16 -0
  184. data/lib/anthropic/models/messages/batch_retrieve_params.rb +16 -0
  185. data/lib/anthropic/models/messages/deleted_message_batch.rb +32 -0
  186. data/lib/anthropic/models/messages/message_batch.rb +130 -0
  187. data/lib/anthropic/models/messages/message_batch_canceled_result.rb +19 -0
  188. data/lib/anthropic/models/messages/message_batch_errored_result.rb +25 -0
  189. data/lib/anthropic/models/messages/message_batch_expired_result.rb +19 -0
  190. data/lib/anthropic/models/messages/message_batch_individual_response.rb +42 -0
  191. data/lib/anthropic/models/messages/message_batch_request_counts.rb +63 -0
  192. data/lib/anthropic/models/messages/message_batch_result.rb +31 -0
  193. data/lib/anthropic/models/messages/message_batch_succeeded_result.rb +25 -0
  194. data/lib/anthropic/models/metadata.rb +23 -0
  195. data/lib/anthropic/models/model.rb +96 -0
  196. data/lib/anthropic/models/model_info.rb +47 -0
  197. data/lib/anthropic/models/model_list_params.rb +53 -0
  198. data/lib/anthropic/models/model_retrieve_params.rb +22 -0
  199. data/lib/anthropic/models/not_found_error.rb +21 -0
  200. data/lib/anthropic/models/overloaded_error.rb +21 -0
  201. data/lib/anthropic/models/permission_error.rb +21 -0
  202. data/lib/anthropic/models/plain_text_source.rb +27 -0
  203. data/lib/anthropic/models/rate_limit_error.rb +21 -0
  204. data/lib/anthropic/models/raw_content_block_delta.rb +24 -0
  205. data/lib/anthropic/models/raw_content_block_delta_event.rb +27 -0
  206. data/lib/anthropic/models/raw_content_block_start_event.rb +49 -0
  207. data/lib/anthropic/models/raw_content_block_stop_event.rb +21 -0
  208. data/lib/anthropic/models/raw_message_delta_event.rb +64 -0
  209. data/lib/anthropic/models/raw_message_start_event.rb +21 -0
  210. data/lib/anthropic/models/raw_message_stop_event.rb +15 -0
  211. data/lib/anthropic/models/raw_message_stream_event.rb +26 -0
  212. data/lib/anthropic/models/redacted_thinking_block.rb +21 -0
  213. data/lib/anthropic/models/redacted_thinking_block_param.rb +21 -0
  214. data/lib/anthropic/models/server_tool_usage.rb +16 -0
  215. data/lib/anthropic/models/server_tool_use_block.rb +33 -0
  216. data/lib/anthropic/models/server_tool_use_block_param.rb +44 -0
  217. data/lib/anthropic/models/signature_delta.rb +21 -0
  218. data/lib/anthropic/models/stop_reason.rb +19 -0
  219. data/lib/anthropic/models/text_block.rb +41 -0
  220. data/lib/anthropic/models/text_block_param.rb +39 -0
  221. data/lib/anthropic/models/text_citation.rb +22 -0
  222. data/lib/anthropic/models/text_citation_param.rb +22 -0
  223. data/lib/anthropic/models/text_delta.rb +21 -0
  224. data/lib/anthropic/models/thinking_block.rb +27 -0
  225. data/lib/anthropic/models/thinking_block_param.rb +27 -0
  226. data/lib/anthropic/models/thinking_config_disabled.rb +15 -0
  227. data/lib/anthropic/models/thinking_config_enabled.rb +34 -0
  228. data/lib/anthropic/models/thinking_config_param.rb +27 -0
  229. data/lib/anthropic/models/thinking_delta.rb +21 -0
  230. data/lib/anthropic/models/tool.rb +92 -0
  231. data/lib/anthropic/models/tool_bash_20250124.rb +36 -0
  232. data/lib/anthropic/models/tool_choice.rb +28 -0
  233. data/lib/anthropic/models/tool_choice_any.rb +31 -0
  234. data/lib/anthropic/models/tool_choice_auto.rb +31 -0
  235. data/lib/anthropic/models/tool_choice_none.rb +17 -0
  236. data/lib/anthropic/models/tool_choice_tool.rb +39 -0
  237. data/lib/anthropic/models/tool_result_block_param.rb +73 -0
  238. data/lib/anthropic/models/tool_text_editor_20250124.rb +36 -0
  239. data/lib/anthropic/models/tool_union.rb +20 -0
  240. data/lib/anthropic/models/tool_use_block.rb +33 -0
  241. data/lib/anthropic/models/tool_use_block_param.rb +44 -0
  242. data/lib/anthropic/models/url_image_source.rb +21 -0
  243. data/lib/anthropic/models/url_pdf_source.rb +21 -0
  244. data/lib/anthropic/models/usage.rb +48 -0
  245. data/lib/anthropic/models/web_search_result_block.rb +39 -0
  246. data/lib/anthropic/models/web_search_result_block_param.rb +39 -0
  247. data/lib/anthropic/models/web_search_tool_20250305.rb +122 -0
  248. data/lib/anthropic/models/web_search_tool_request_error.rb +35 -0
  249. data/lib/anthropic/models/web_search_tool_result_block.rb +27 -0
  250. data/lib/anthropic/models/web_search_tool_result_block_content.rb +19 -0
  251. data/lib/anthropic/models/web_search_tool_result_block_param.rb +37 -0
  252. data/lib/anthropic/models/web_search_tool_result_block_param_content.rb +20 -0
  253. data/lib/anthropic/models/web_search_tool_result_error.rb +35 -0
  254. data/lib/anthropic/models.rb +261 -0
  255. data/lib/anthropic/request_options.rb +77 -0
  256. data/lib/anthropic/resources/beta/messages/batches.rb +218 -0
  257. data/lib/anthropic/resources/beta/messages.rb +200 -0
  258. data/lib/anthropic/resources/beta/models.rb +80 -0
  259. data/lib/anthropic/resources/beta.rb +22 -0
  260. data/lib/anthropic/resources/completions.rb +132 -0
  261. data/lib/anthropic/resources/messages/batches.rb +193 -0
  262. data/lib/anthropic/resources/messages.rb +184 -0
  263. data/lib/anthropic/resources/models.rb +78 -0
  264. data/lib/anthropic/version.rb +3 -1
  265. data/lib/anthropic/vertex.rb +5 -0
  266. data/lib/anthropic.rb +286 -68
  267. data/manifest.yaml +15 -0
  268. data/rbi/anthropic/bedrock.rbi +5 -0
  269. data/rbi/anthropic/client.rbi +74 -0
  270. data/rbi/anthropic/errors.rbi +162 -0
  271. data/rbi/anthropic/file_part.rbi +37 -0
  272. data/rbi/anthropic/helpers/bedrock/client.rbi +82 -0
  273. data/rbi/anthropic/helpers/vertex/client.rbi +58 -0
  274. data/rbi/anthropic/internal/jsonl_stream.rbi +17 -0
  275. data/rbi/anthropic/internal/page.rbi +28 -0
  276. data/rbi/anthropic/internal/stream.rbi +20 -0
  277. data/rbi/anthropic/internal/transport/base_client.rbi +310 -0
  278. data/rbi/anthropic/internal/transport/pooled_net_requester.rbi +79 -0
  279. data/rbi/anthropic/internal/type/array_of.rbi +104 -0
  280. data/rbi/anthropic/internal/type/base_model.rbi +304 -0
  281. data/rbi/anthropic/internal/type/base_page.rbi +42 -0
  282. data/rbi/anthropic/internal/type/base_stream.rbi +68 -0
  283. data/rbi/anthropic/internal/type/boolean.rbi +56 -0
  284. data/rbi/anthropic/internal/type/converter.rbi +162 -0
  285. data/rbi/anthropic/internal/type/enum.rbi +82 -0
  286. data/rbi/anthropic/internal/type/file_input.rbi +59 -0
  287. data/rbi/anthropic/internal/type/hash_of.rbi +104 -0
  288. data/rbi/anthropic/internal/type/request_parameters.rbi +29 -0
  289. data/rbi/anthropic/internal/type/union.rbi +116 -0
  290. data/rbi/anthropic/internal/type/unknown.rbi +56 -0
  291. data/rbi/anthropic/internal/util.rbi +485 -0
  292. data/rbi/anthropic/internal.rbi +18 -0
  293. data/rbi/anthropic/models/anthropic_beta.rbi +54 -0
  294. data/rbi/anthropic/models/api_error_object.rbi +26 -0
  295. data/rbi/anthropic/models/authentication_error.rbi +26 -0
  296. data/rbi/anthropic/models/base64_image_source.rbi +82 -0
  297. data/rbi/anthropic/models/base64_pdf_source.rbi +35 -0
  298. data/rbi/anthropic/models/beta/beta_base64_image_source.rbi +95 -0
  299. data/rbi/anthropic/models/beta/beta_base64_pdf_block.rbi +134 -0
  300. data/rbi/anthropic/models/beta/beta_base64_pdf_source.rbi +42 -0
  301. data/rbi/anthropic/models/beta/beta_cache_control_ephemeral.rbi +30 -0
  302. data/rbi/anthropic/models/beta/beta_citation_char_location.rbi +72 -0
  303. data/rbi/anthropic/models/beta/beta_citation_char_location_param.rbi +72 -0
  304. data/rbi/anthropic/models/beta/beta_citation_content_block_location.rbi +72 -0
  305. data/rbi/anthropic/models/beta/beta_citation_content_block_location_param.rbi +73 -0
  306. data/rbi/anthropic/models/beta/beta_citation_page_location.rbi +72 -0
  307. data/rbi/anthropic/models/beta/beta_citation_page_location_param.rbi +72 -0
  308. data/rbi/anthropic/models/beta/beta_citation_web_search_result_location_param.rbi +67 -0
  309. data/rbi/anthropic/models/beta/beta_citations_config_param.rbi +33 -0
  310. data/rbi/anthropic/models/beta/beta_citations_delta.rbi +73 -0
  311. data/rbi/anthropic/models/beta/beta_citations_web_search_result_location.rbi +67 -0
  312. data/rbi/anthropic/models/beta/beta_content_block.rbi +33 -0
  313. data/rbi/anthropic/models/beta/beta_content_block_param.rbi +36 -0
  314. data/rbi/anthropic/models/beta/beta_content_block_source.rbi +80 -0
  315. data/rbi/anthropic/models/beta/beta_content_block_source_content.rbi +29 -0
  316. data/rbi/anthropic/models/beta/beta_image_block_param.rbi +101 -0
  317. data/rbi/anthropic/models/beta/beta_input_json_delta.rbi +35 -0
  318. data/rbi/anthropic/models/beta/beta_message.rbi +245 -0
  319. data/rbi/anthropic/models/beta/beta_message_delta_usage.rbi +85 -0
  320. data/rbi/anthropic/models/beta/beta_message_param.rbi +99 -0
  321. data/rbi/anthropic/models/beta/beta_message_tokens_count.rbi +36 -0
  322. data/rbi/anthropic/models/beta/beta_metadata.rbi +39 -0
  323. data/rbi/anthropic/models/beta/beta_model_info.rbi +66 -0
  324. data/rbi/anthropic/models/beta/beta_plain_text_source.rbi +42 -0
  325. data/rbi/anthropic/models/beta/beta_raw_content_block_delta.rbi +32 -0
  326. data/rbi/anthropic/models/beta/beta_raw_content_block_delta_event.rbi +57 -0
  327. data/rbi/anthropic/models/beta/beta_raw_content_block_start_event.rbi +89 -0
  328. data/rbi/anthropic/models/beta/beta_raw_content_block_stop_event.rbi +33 -0
  329. data/rbi/anthropic/models/beta/beta_raw_message_delta_event.rbi +135 -0
  330. data/rbi/anthropic/models/beta/beta_raw_message_start_event.rbi +45 -0
  331. data/rbi/anthropic/models/beta/beta_raw_message_stop_event.rbi +30 -0
  332. data/rbi/anthropic/models/beta/beta_raw_message_stream_event.rbi +33 -0
  333. data/rbi/anthropic/models/beta/beta_redacted_thinking_block.rbi +33 -0
  334. data/rbi/anthropic/models/beta/beta_redacted_thinking_block_param.rbi +33 -0
  335. data/rbi/anthropic/models/beta/beta_server_tool_usage.rbi +34 -0
  336. data/rbi/anthropic/models/beta/beta_server_tool_use_block.rbi +50 -0
  337. data/rbi/anthropic/models/beta/beta_server_tool_use_block_param.rbi +78 -0
  338. data/rbi/anthropic/models/beta/beta_signature_delta.rbi +35 -0
  339. data/rbi/anthropic/models/beta/beta_stop_reason.rbi +37 -0
  340. data/rbi/anthropic/models/beta/beta_text_block.rbi +78 -0
  341. data/rbi/anthropic/models/beta/beta_text_block_param.rbi +105 -0
  342. data/rbi/anthropic/models/beta/beta_text_citation.rbi +31 -0
  343. data/rbi/anthropic/models/beta/beta_text_citation_param.rbi +31 -0
  344. data/rbi/anthropic/models/beta/beta_text_delta.rbi +30 -0
  345. data/rbi/anthropic/models/beta/beta_thinking_block.rbi +44 -0
  346. data/rbi/anthropic/models/beta/beta_thinking_block_param.rbi +44 -0
  347. data/rbi/anthropic/models/beta/beta_thinking_config_disabled.rbi +30 -0
  348. data/rbi/anthropic/models/beta/beta_thinking_config_enabled.rbi +56 -0
  349. data/rbi/anthropic/models/beta/beta_thinking_config_param.rbi +38 -0
  350. data/rbi/anthropic/models/beta/beta_thinking_delta.rbi +33 -0
  351. data/rbi/anthropic/models/beta/beta_tool.rbi +165 -0
  352. data/rbi/anthropic/models/beta/beta_tool_bash_20241022.rbi +72 -0
  353. data/rbi/anthropic/models/beta/beta_tool_bash_20250124.rbi +72 -0
  354. data/rbi/anthropic/models/beta/beta_tool_choice.rbi +31 -0
  355. data/rbi/anthropic/models/beta/beta_tool_choice_any.rbi +56 -0
  356. data/rbi/anthropic/models/beta/beta_tool_choice_auto.rbi +56 -0
  357. data/rbi/anthropic/models/beta/beta_tool_choice_none.rbi +31 -0
  358. data/rbi/anthropic/models/beta/beta_tool_choice_tool.rbi +68 -0
  359. data/rbi/anthropic/models/beta/beta_tool_computer_use_20241022.rbi +96 -0
  360. data/rbi/anthropic/models/beta/beta_tool_computer_use_20250124.rbi +96 -0
  361. data/rbi/anthropic/models/beta/beta_tool_result_block_param.rbi +152 -0
  362. data/rbi/anthropic/models/beta/beta_tool_text_editor_20241022.rbi +72 -0
  363. data/rbi/anthropic/models/beta/beta_tool_text_editor_20250124.rbi +72 -0
  364. data/rbi/anthropic/models/beta/beta_tool_union.rbi +33 -0
  365. data/rbi/anthropic/models/beta/beta_tool_use_block.rbi +50 -0
  366. data/rbi/anthropic/models/beta/beta_tool_use_block_param.rbi +78 -0
  367. data/rbi/anthropic/models/beta/beta_url_image_source.rbi +33 -0
  368. data/rbi/anthropic/models/beta/beta_url_pdf_source.rbi +33 -0
  369. data/rbi/anthropic/models/beta/beta_usage.rbi +82 -0
  370. data/rbi/anthropic/models/beta/beta_web_search_result_block.rbi +66 -0
  371. data/rbi/anthropic/models/beta/beta_web_search_result_block_param.rbi +66 -0
  372. data/rbi/anthropic/models/beta/beta_web_search_tool_20250305.rbi +201 -0
  373. data/rbi/anthropic/models/beta/beta_web_search_tool_request_error.rbi +100 -0
  374. data/rbi/anthropic/models/beta/beta_web_search_tool_result_block.rbi +59 -0
  375. data/rbi/anthropic/models/beta/beta_web_search_tool_result_block_content.rbi +40 -0
  376. data/rbi/anthropic/models/beta/beta_web_search_tool_result_block_param.rbi +89 -0
  377. data/rbi/anthropic/models/beta/beta_web_search_tool_result_block_param_content.rbi +40 -0
  378. data/rbi/anthropic/models/beta/beta_web_search_tool_result_error.rbi +100 -0
  379. data/rbi/anthropic/models/beta/message_count_tokens_params.rbi +649 -0
  380. data/rbi/anthropic/models/beta/message_create_params.rbi +748 -0
  381. data/rbi/anthropic/models/beta/messages/batch_cancel_params.rbi +65 -0
  382. data/rbi/anthropic/models/beta/messages/batch_create_params.rbi +897 -0
  383. data/rbi/anthropic/models/beta/messages/batch_delete_params.rbi +65 -0
  384. data/rbi/anthropic/models/beta/messages/batch_list_params.rbi +106 -0
  385. data/rbi/anthropic/models/beta/messages/batch_results_params.rbi +65 -0
  386. data/rbi/anthropic/models/beta/messages/batch_retrieve_params.rbi +65 -0
  387. data/rbi/anthropic/models/beta/messages/beta_deleted_message_batch.rbi +44 -0
  388. data/rbi/anthropic/models/beta/messages/beta_message_batch.rbi +214 -0
  389. data/rbi/anthropic/models/beta/messages/beta_message_batch_canceled_result.rbi +30 -0
  390. data/rbi/anthropic/models/beta/messages/beta_message_batch_errored_result.rbi +45 -0
  391. data/rbi/anthropic/models/beta/messages/beta_message_batch_expired_result.rbi +30 -0
  392. data/rbi/anthropic/models/beta/messages/beta_message_batch_individual_response.rbi +77 -0
  393. data/rbi/anthropic/models/beta/messages/beta_message_batch_request_counts.rbi +92 -0
  394. data/rbi/anthropic/models/beta/messages/beta_message_batch_result.rbi +38 -0
  395. data/rbi/anthropic/models/beta/messages/beta_message_batch_succeeded_result.rbi +45 -0
  396. data/rbi/anthropic/models/beta/model_list_params.rbi +103 -0
  397. data/rbi/anthropic/models/beta/model_retrieve_params.rbi +62 -0
  398. data/rbi/anthropic/models/beta_api_error.rbi +26 -0
  399. data/rbi/anthropic/models/beta_authentication_error.rbi +29 -0
  400. data/rbi/anthropic/models/beta_billing_error.rbi +26 -0
  401. data/rbi/anthropic/models/beta_error.rbi +28 -0
  402. data/rbi/anthropic/models/beta_error_response.rbi +46 -0
  403. data/rbi/anthropic/models/beta_gateway_timeout_error.rbi +29 -0
  404. data/rbi/anthropic/models/beta_invalid_request_error.rbi +29 -0
  405. data/rbi/anthropic/models/beta_not_found_error.rbi +26 -0
  406. data/rbi/anthropic/models/beta_overloaded_error.rbi +26 -0
  407. data/rbi/anthropic/models/beta_permission_error.rbi +26 -0
  408. data/rbi/anthropic/models/beta_rate_limit_error.rbi +26 -0
  409. data/rbi/anthropic/models/billing_error.rbi +26 -0
  410. data/rbi/anthropic/models/cache_control_ephemeral.rbi +23 -0
  411. data/rbi/anthropic/models/citation_char_location.rbi +65 -0
  412. data/rbi/anthropic/models/citation_char_location_param.rbi +68 -0
  413. data/rbi/anthropic/models/citation_content_block_location.rbi +68 -0
  414. data/rbi/anthropic/models/citation_content_block_location_param.rbi +68 -0
  415. data/rbi/anthropic/models/citation_page_location.rbi +65 -0
  416. data/rbi/anthropic/models/citation_page_location_param.rbi +68 -0
  417. data/rbi/anthropic/models/citation_web_search_result_location_param.rbi +62 -0
  418. data/rbi/anthropic/models/citations_config_param.rbi +26 -0
  419. data/rbi/anthropic/models/citations_delta.rbi +66 -0
  420. data/rbi/anthropic/models/citations_web_search_result_location.rbi +62 -0
  421. data/rbi/anthropic/models/completion.rbi +93 -0
  422. data/rbi/anthropic/models/completion_create_params.rbi +217 -0
  423. data/rbi/anthropic/models/content_block.rbi +25 -0
  424. data/rbi/anthropic/models/content_block_param.rbi +28 -0
  425. data/rbi/anthropic/models/content_block_source.rbi +66 -0
  426. data/rbi/anthropic/models/content_block_source_content.rbi +22 -0
  427. data/rbi/anthropic/models/document_block_param.rbi +120 -0
  428. data/rbi/anthropic/models/error_object.rbi +28 -0
  429. data/rbi/anthropic/models/error_response.rbi +46 -0
  430. data/rbi/anthropic/models/gateway_timeout_error.rbi +26 -0
  431. data/rbi/anthropic/models/image_block_param.rbi +80 -0
  432. data/rbi/anthropic/models/input_json_delta.rbi +28 -0
  433. data/rbi/anthropic/models/invalid_request_error.rbi +26 -0
  434. data/rbi/anthropic/models/message.rbi +236 -0
  435. data/rbi/anthropic/models/message_count_tokens_params.rbi +571 -0
  436. data/rbi/anthropic/models/message_count_tokens_tool.rbi +25 -0
  437. data/rbi/anthropic/models/message_create_params.rbi +697 -0
  438. data/rbi/anthropic/models/message_delta_usage.rbi +76 -0
  439. data/rbi/anthropic/models/message_param.rbi +81 -0
  440. data/rbi/anthropic/models/message_tokens_count.rbi +29 -0
  441. data/rbi/anthropic/models/messages/batch_cancel_params.rbi +32 -0
  442. data/rbi/anthropic/models/messages/batch_create_params.rbi +843 -0
  443. data/rbi/anthropic/models/messages/batch_delete_params.rbi +32 -0
  444. data/rbi/anthropic/models/messages/batch_list_params.rbi +81 -0
  445. data/rbi/anthropic/models/messages/batch_results_params.rbi +32 -0
  446. data/rbi/anthropic/models/messages/batch_retrieve_params.rbi +32 -0
  447. data/rbi/anthropic/models/messages/deleted_message_batch.rbi +42 -0
  448. data/rbi/anthropic/models/messages/message_batch.rbi +208 -0
  449. data/rbi/anthropic/models/messages/message_batch_canceled_result.rbi +30 -0
  450. data/rbi/anthropic/models/messages/message_batch_errored_result.rbi +42 -0
  451. data/rbi/anthropic/models/messages/message_batch_expired_result.rbi +30 -0
  452. data/rbi/anthropic/models/messages/message_batch_individual_response.rbi +74 -0
  453. data/rbi/anthropic/models/messages/message_batch_request_counts.rbi +92 -0
  454. data/rbi/anthropic/models/messages/message_batch_result.rbi +36 -0
  455. data/rbi/anthropic/models/messages/message_batch_succeeded_result.rbi +40 -0
  456. data/rbi/anthropic/models/metadata.rbi +35 -0
  457. data/rbi/anthropic/models/model.rbi +68 -0
  458. data/rbi/anthropic/models/model_info.rbi +62 -0
  459. data/rbi/anthropic/models/model_list_params.rbi +95 -0
  460. data/rbi/anthropic/models/model_retrieve_params.rbi +54 -0
  461. data/rbi/anthropic/models/not_found_error.rbi +26 -0
  462. data/rbi/anthropic/models/overloaded_error.rbi +26 -0
  463. data/rbi/anthropic/models/permission_error.rbi +26 -0
  464. data/rbi/anthropic/models/plain_text_source.rbi +35 -0
  465. data/rbi/anthropic/models/rate_limit_error.rbi +26 -0
  466. data/rbi/anthropic/models/raw_content_block_delta.rbi +26 -0
  467. data/rbi/anthropic/models/raw_content_block_delta_event.rbi +53 -0
  468. data/rbi/anthropic/models/raw_content_block_start_event.rbi +83 -0
  469. data/rbi/anthropic/models/raw_content_block_stop_event.rbi +29 -0
  470. data/rbi/anthropic/models/raw_message_delta_event.rbi +119 -0
  471. data/rbi/anthropic/models/raw_message_start_event.rbi +33 -0
  472. data/rbi/anthropic/models/raw_message_stop_event.rbi +23 -0
  473. data/rbi/anthropic/models/raw_message_stream_event.rbi +27 -0
  474. data/rbi/anthropic/models/redacted_thinking_block.rbi +26 -0
  475. data/rbi/anthropic/models/redacted_thinking_block_param.rbi +29 -0
  476. data/rbi/anthropic/models/server_tool_usage.rbi +27 -0
  477. data/rbi/anthropic/models/server_tool_use_block.rbi +43 -0
  478. data/rbi/anthropic/models/server_tool_use_block_param.rbi +71 -0
  479. data/rbi/anthropic/models/signature_delta.rbi +26 -0
  480. data/rbi/anthropic/models/stop_reason.rbi +23 -0
  481. data/rbi/anthropic/models/text_block.rbi +67 -0
  482. data/rbi/anthropic/models/text_block_param.rbi +95 -0
  483. data/rbi/anthropic/models/text_citation.rbi +23 -0
  484. data/rbi/anthropic/models/text_citation_param.rbi +23 -0
  485. data/rbi/anthropic/models/text_delta.rbi +26 -0
  486. data/rbi/anthropic/models/thinking_block.rbi +35 -0
  487. data/rbi/anthropic/models/thinking_block_param.rbi +35 -0
  488. data/rbi/anthropic/models/thinking_config_disabled.rbi +23 -0
  489. data/rbi/anthropic/models/thinking_config_enabled.rbi +49 -0
  490. data/rbi/anthropic/models/thinking_config_param.rbi +32 -0
  491. data/rbi/anthropic/models/thinking_delta.rbi +26 -0
  492. data/rbi/anthropic/models/tool.rbi +142 -0
  493. data/rbi/anthropic/models/tool_bash_20250124.rbi +62 -0
  494. data/rbi/anthropic/models/tool_choice.rbi +25 -0
  495. data/rbi/anthropic/models/tool_choice_any.rbi +49 -0
  496. data/rbi/anthropic/models/tool_choice_auto.rbi +49 -0
  497. data/rbi/anthropic/models/tool_choice_none.rbi +24 -0
  498. data/rbi/anthropic/models/tool_choice_tool.rbi +57 -0
  499. data/rbi/anthropic/models/tool_result_block_param.rbi +127 -0
  500. data/rbi/anthropic/models/tool_text_editor_20250124.rbi +62 -0
  501. data/rbi/anthropic/models/tool_union.rbi +23 -0
  502. data/rbi/anthropic/models/tool_use_block.rbi +43 -0
  503. data/rbi/anthropic/models/tool_use_block_param.rbi +68 -0
  504. data/rbi/anthropic/models/url_image_source.rbi +26 -0
  505. data/rbi/anthropic/models/url_pdf_source.rbi +26 -0
  506. data/rbi/anthropic/models/usage.rbi +74 -0
  507. data/rbi/anthropic/models/web_search_result_block.rbi +59 -0
  508. data/rbi/anthropic/models/web_search_result_block_param.rbi +62 -0
  509. data/rbi/anthropic/models/web_search_tool_20250305.rbi +181 -0
  510. data/rbi/anthropic/models/web_search_tool_request_error.rbi +88 -0
  511. data/rbi/anthropic/models/web_search_tool_result_block.rbi +50 -0
  512. data/rbi/anthropic/models/web_search_tool_result_block_content.rbi +31 -0
  513. data/rbi/anthropic/models/web_search_tool_result_block_param.rbi +80 -0
  514. data/rbi/anthropic/models/web_search_tool_result_block_param_content.rbi +33 -0
  515. data/rbi/anthropic/models/web_search_tool_result_error.rbi +90 -0
  516. data/rbi/anthropic/models.rbi +229 -0
  517. data/rbi/anthropic/request_options.rbi +59 -0
  518. data/rbi/anthropic/resources/beta/messages/batches.rbi +186 -0
  519. data/rbi/anthropic/resources/beta/messages.rbi +830 -0
  520. data/rbi/anthropic/resources/beta/models.rbi +64 -0
  521. data/rbi/anthropic/resources/beta.rbi +18 -0
  522. data/rbi/anthropic/resources/completions.rbi +199 -0
  523. data/rbi/anthropic/resources/messages/batches.rbi +156 -0
  524. data/rbi/anthropic/resources/messages.rbi +806 -0
  525. data/rbi/anthropic/resources/models.rbi +62 -0
  526. data/rbi/anthropic/version.rbi +5 -0
  527. data/rbi/anthropic/vertex.rbi +5 -0
  528. data/sig/anthropic/bedrock.rbs +3 -0
  529. data/sig/anthropic/client.rbs +39 -0
  530. data/sig/anthropic/errors.rbs +101 -0
  531. data/sig/anthropic/file_part.rbs +21 -0
  532. data/sig/anthropic/helpers/bedrock/client.rbs +43 -0
  533. data/sig/anthropic/helpers/vertex/client.rbs +36 -0
  534. data/sig/anthropic/internal/jsonl_stream.rbs +9 -0
  535. data/sig/anthropic/internal/page.rbs +17 -0
  536. data/sig/anthropic/internal/stream.rbs +9 -0
  537. data/sig/anthropic/internal/transport/base_client.rbs +131 -0
  538. data/sig/anthropic/internal/transport/pooled_net_requester.rbs +45 -0
  539. data/sig/anthropic/internal/type/array_of.rbs +48 -0
  540. data/sig/anthropic/internal/type/base_model.rbs +102 -0
  541. data/sig/anthropic/internal/type/base_page.rbs +24 -0
  542. data/sig/anthropic/internal/type/base_stream.rbs +33 -0
  543. data/sig/anthropic/internal/type/boolean.rbs +26 -0
  544. data/sig/anthropic/internal/type/converter.rbs +56 -0
  545. data/sig/anthropic/internal/type/enum.rbs +32 -0
  546. data/sig/anthropic/internal/type/file_input.rbs +25 -0
  547. data/sig/anthropic/internal/type/hash_of.rbs +48 -0
  548. data/sig/anthropic/internal/type/request_parameters.rbs +19 -0
  549. data/sig/anthropic/internal/type/union.rbs +52 -0
  550. data/sig/anthropic/internal/type/unknown.rbs +26 -0
  551. data/sig/anthropic/internal/util.rbs +185 -0
  552. data/sig/anthropic/internal.rbs +9 -0
  553. data/sig/anthropic/models/anthropic_beta.rbs +29 -0
  554. data/sig/anthropic/models/api_error_object.rbs +13 -0
  555. data/sig/anthropic/models/authentication_error.rbs +13 -0
  556. data/sig/anthropic/models/base64_image_source.rbs +38 -0
  557. data/sig/anthropic/models/base64_pdf_source.rbs +20 -0
  558. data/sig/anthropic/models/beta/beta_base64_image_source.rbs +42 -0
  559. data/sig/anthropic/models/beta/beta_base64_pdf_block.rbs +56 -0
  560. data/sig/anthropic/models/beta/beta_base64_pdf_source.rbs +24 -0
  561. data/sig/anthropic/models/beta/beta_cache_control_ephemeral.rbs +15 -0
  562. data/sig/anthropic/models/beta/beta_citation_char_location.rbs +40 -0
  563. data/sig/anthropic/models/beta/beta_citation_char_location_param.rbs +40 -0
  564. data/sig/anthropic/models/beta/beta_citation_content_block_location.rbs +40 -0
  565. data/sig/anthropic/models/beta/beta_citation_content_block_location_param.rbs +40 -0
  566. data/sig/anthropic/models/beta/beta_citation_page_location.rbs +40 -0
  567. data/sig/anthropic/models/beta/beta_citation_page_location_param.rbs +40 -0
  568. data/sig/anthropic/models/beta/beta_citation_web_search_result_location_param.rbs +36 -0
  569. data/sig/anthropic/models/beta/beta_citations_config_param.rbs +17 -0
  570. data/sig/anthropic/models/beta/beta_citations_delta.rbs +36 -0
  571. data/sig/anthropic/models/beta/beta_citations_web_search_result_location.rbs +36 -0
  572. data/sig/anthropic/models/beta/beta_content_block.rbs +21 -0
  573. data/sig/anthropic/models/beta/beta_content_block_param.rbs +24 -0
  574. data/sig/anthropic/models/beta/beta_content_block_source.rbs +36 -0
  575. data/sig/anthropic/models/beta/beta_content_block_source_content.rbs +17 -0
  576. data/sig/anthropic/models/beta/beta_image_block_param.rbs +38 -0
  577. data/sig/anthropic/models/beta/beta_input_json_delta.rbs +18 -0
  578. data/sig/anthropic/models/beta/beta_message.rbs +48 -0
  579. data/sig/anthropic/models/beta/beta_message_delta_usage.rbs +36 -0
  580. data/sig/anthropic/models/beta/beta_message_param.rbs +46 -0
  581. data/sig/anthropic/models/beta/beta_message_tokens_count.rbs +15 -0
  582. data/sig/anthropic/models/beta/beta_metadata.rbs +15 -0
  583. data/sig/anthropic/models/beta/beta_model_info.rbs +27 -0
  584. data/sig/anthropic/models/beta/beta_plain_text_source.rbs +24 -0
  585. data/sig/anthropic/models/beta/beta_raw_content_block_delta.rbs +20 -0
  586. data/sig/anthropic/models/beta/beta_raw_content_block_delta_event.rbs +28 -0
  587. data/sig/anthropic/models/beta/beta_raw_content_block_start_event.rbs +42 -0
  588. data/sig/anthropic/models/beta/beta_raw_content_block_stop_event.rbs +18 -0
  589. data/sig/anthropic/models/beta/beta_raw_message_delta_event.rbs +45 -0
  590. data/sig/anthropic/models/beta/beta_raw_message_start_event.rbs +21 -0
  591. data/sig/anthropic/models/beta/beta_raw_message_stop_event.rbs +15 -0
  592. data/sig/anthropic/models/beta/beta_raw_message_stream_event.rbs +21 -0
  593. data/sig/anthropic/models/beta/beta_redacted_thinking_block.rbs +18 -0
  594. data/sig/anthropic/models/beta/beta_redacted_thinking_block_param.rbs +18 -0
  595. data/sig/anthropic/models/beta/beta_server_tool_usage.rbs +15 -0
  596. data/sig/anthropic/models/beta/beta_server_tool_use_block.rbs +27 -0
  597. data/sig/anthropic/models/beta/beta_server_tool_use_block_param.rbs +36 -0
  598. data/sig/anthropic/models/beta/beta_signature_delta.rbs +17 -0
  599. data/sig/anthropic/models/beta/beta_stop_reason.rbs +28 -0
  600. data/sig/anthropic/models/beta/beta_text_block.rbs +28 -0
  601. data/sig/anthropic/models/beta/beta_text_block_param.rbs +32 -0
  602. data/sig/anthropic/models/beta/beta_text_citation.rbs +19 -0
  603. data/sig/anthropic/models/beta/beta_text_citation_param.rbs +19 -0
  604. data/sig/anthropic/models/beta/beta_text_delta.rbs +17 -0
  605. data/sig/anthropic/models/beta/beta_thinking_block.rbs +24 -0
  606. data/sig/anthropic/models/beta/beta_thinking_block_param.rbs +24 -0
  607. data/sig/anthropic/models/beta/beta_thinking_config_disabled.rbs +15 -0
  608. data/sig/anthropic/models/beta/beta_thinking_config_enabled.rbs +18 -0
  609. data/sig/anthropic/models/beta/beta_thinking_config_param.rbs +17 -0
  610. data/sig/anthropic/models/beta/beta_thinking_delta.rbs +17 -0
  611. data/sig/anthropic/models/beta/beta_tool.rbs +58 -0
  612. data/sig/anthropic/models/beta/beta_tool_bash_20241022.rbs +28 -0
  613. data/sig/anthropic/models/beta/beta_tool_bash_20250124.rbs +28 -0
  614. data/sig/anthropic/models/beta/beta_tool_choice.rbs +19 -0
  615. data/sig/anthropic/models/beta/beta_tool_choice_any.rbs +20 -0
  616. data/sig/anthropic/models/beta/beta_tool_choice_auto.rbs +20 -0
  617. data/sig/anthropic/models/beta/beta_tool_choice_none.rbs +15 -0
  618. data/sig/anthropic/models/beta/beta_tool_choice_tool.rbs +26 -0
  619. data/sig/anthropic/models/beta/beta_tool_computer_use_20241022.rbs +40 -0
  620. data/sig/anthropic/models/beta/beta_tool_computer_use_20250124.rbs +40 -0
  621. data/sig/anthropic/models/beta/beta_tool_result_block_param.rbs +64 -0
  622. data/sig/anthropic/models/beta/beta_tool_text_editor_20241022.rbs +28 -0
  623. data/sig/anthropic/models/beta/beta_tool_text_editor_20250124.rbs +28 -0
  624. data/sig/anthropic/models/beta/beta_tool_union.rbs +23 -0
  625. data/sig/anthropic/models/beta/beta_tool_use_block.rbs +27 -0
  626. data/sig/anthropic/models/beta/beta_tool_use_block_param.rbs +36 -0
  627. data/sig/anthropic/models/beta/beta_url_image_source.rbs +17 -0
  628. data/sig/anthropic/models/beta/beta_url_pdf_source.rbs +17 -0
  629. data/sig/anthropic/models/beta/beta_usage.rbs +36 -0
  630. data/sig/anthropic/models/beta/beta_web_search_result_block.rbs +36 -0
  631. data/sig/anthropic/models/beta/beta_web_search_result_block_param.rbs +36 -0
  632. data/sig/anthropic/models/beta/beta_web_search_tool_20250305.rbs +73 -0
  633. data/sig/anthropic/models/beta/beta_web_search_tool_request_error.rbs +43 -0
  634. data/sig/anthropic/models/beta/beta_web_search_tool_result_block.rbs +28 -0
  635. data/sig/anthropic/models/beta/beta_web_search_tool_result_block_content.rbs +19 -0
  636. data/sig/anthropic/models/beta/beta_web_search_tool_result_block_param.rbs +32 -0
  637. data/sig/anthropic/models/beta/beta_web_search_tool_result_block_param_content.rbs +19 -0
  638. data/sig/anthropic/models/beta/beta_web_search_tool_result_error.rbs +43 -0
  639. data/sig/anthropic/models/beta/message_count_tokens_params.rbs +93 -0
  640. data/sig/anthropic/models/beta/message_create_params.rbs +113 -0
  641. data/sig/anthropic/models/beta/messages/batch_cancel_params.rbs +27 -0
  642. data/sig/anthropic/models/beta/messages/batch_create_params.rbs +152 -0
  643. data/sig/anthropic/models/beta/messages/batch_delete_params.rbs +27 -0
  644. data/sig/anthropic/models/beta/messages/batch_list_params.rbs +47 -0
  645. data/sig/anthropic/models/beta/messages/batch_results_params.rbs +27 -0
  646. data/sig/anthropic/models/beta/messages/batch_retrieve_params.rbs +27 -0
  647. data/sig/anthropic/models/beta/messages/beta_deleted_message_batch.rbs +18 -0
  648. data/sig/anthropic/models/beta/messages/beta_message_batch.rbs +68 -0
  649. data/sig/anthropic/models/beta/messages/beta_message_batch_canceled_result.rbs +15 -0
  650. data/sig/anthropic/models/beta/messages/beta_message_batch_errored_result.rbs +21 -0
  651. data/sig/anthropic/models/beta/messages/beta_message_batch_expired_result.rbs +15 -0
  652. data/sig/anthropic/models/beta/messages/beta_message_batch_individual_response.rbs +24 -0
  653. data/sig/anthropic/models/beta/messages/beta_message_batch_request_counts.rbs +36 -0
  654. data/sig/anthropic/models/beta/messages/beta_message_batch_result.rbs +19 -0
  655. data/sig/anthropic/models/beta/messages/beta_message_batch_succeeded_result.rbs +21 -0
  656. data/sig/anthropic/models/beta/model_list_params.rbs +45 -0
  657. data/sig/anthropic/models/beta/model_retrieve_params.rbs +25 -0
  658. data/sig/anthropic/models/beta_api_error.rbs +13 -0
  659. data/sig/anthropic/models/beta_authentication_error.rbs +14 -0
  660. data/sig/anthropic/models/beta_billing_error.rbs +13 -0
  661. data/sig/anthropic/models/beta_error.rbs +20 -0
  662. data/sig/anthropic/models/beta_error_response.rbs +17 -0
  663. data/sig/anthropic/models/beta_gateway_timeout_error.rbs +13 -0
  664. data/sig/anthropic/models/beta_invalid_request_error.rbs +14 -0
  665. data/sig/anthropic/models/beta_not_found_error.rbs +13 -0
  666. data/sig/anthropic/models/beta_overloaded_error.rbs +13 -0
  667. data/sig/anthropic/models/beta_permission_error.rbs +13 -0
  668. data/sig/anthropic/models/beta_rate_limit_error.rbs +13 -0
  669. data/sig/anthropic/models/billing_error.rbs +13 -0
  670. data/sig/anthropic/models/cache_control_ephemeral.rbs +11 -0
  671. data/sig/anthropic/models/citation_char_location.rbs +36 -0
  672. data/sig/anthropic/models/citation_char_location_param.rbs +36 -0
  673. data/sig/anthropic/models/citation_content_block_location.rbs +36 -0
  674. data/sig/anthropic/models/citation_content_block_location_param.rbs +36 -0
  675. data/sig/anthropic/models/citation_page_location.rbs +36 -0
  676. data/sig/anthropic/models/citation_page_location_param.rbs +36 -0
  677. data/sig/anthropic/models/citation_web_search_result_location_param.rbs +32 -0
  678. data/sig/anthropic/models/citations_config_param.rbs +13 -0
  679. data/sig/anthropic/models/citations_delta.rbs +29 -0
  680. data/sig/anthropic/models/citations_web_search_result_location.rbs +32 -0
  681. data/sig/anthropic/models/completion.rbs +32 -0
  682. data/sig/anthropic/models/completion_create_params.rbs +67 -0
  683. data/sig/anthropic/models/content_block.rbs +17 -0
  684. data/sig/anthropic/models/content_block_param.rbs +20 -0
  685. data/sig/anthropic/models/content_block_source.rbs +28 -0
  686. data/sig/anthropic/models/content_block_source_content.rbs +12 -0
  687. data/sig/anthropic/models/document_block_param.rbs +52 -0
  688. data/sig/anthropic/models/error_object.rbs +20 -0
  689. data/sig/anthropic/models/error_response.rbs +17 -0
  690. data/sig/anthropic/models/gateway_timeout_error.rbs +13 -0
  691. data/sig/anthropic/models/image_block_param.rbs +32 -0
  692. data/sig/anthropic/models/input_json_delta.rbs +13 -0
  693. data/sig/anthropic/models/invalid_request_error.rbs +14 -0
  694. data/sig/anthropic/models/message.rbs +44 -0
  695. data/sig/anthropic/models/message_count_tokens_params.rbs +67 -0
  696. data/sig/anthropic/models/message_count_tokens_tool.rbs +15 -0
  697. data/sig/anthropic/models/message_create_params.rbs +101 -0
  698. data/sig/anthropic/models/message_delta_usage.rbs +32 -0
  699. data/sig/anthropic/models/message_param.rbs +41 -0
  700. data/sig/anthropic/models/message_tokens_count.rbs +11 -0
  701. data/sig/anthropic/models/messages/batch_cancel_params.rbs +15 -0
  702. data/sig/anthropic/models/messages/batch_create_params.rbs +137 -0
  703. data/sig/anthropic/models/messages/batch_delete_params.rbs +15 -0
  704. data/sig/anthropic/models/messages/batch_list_params.rbs +33 -0
  705. data/sig/anthropic/models/messages/batch_results_params.rbs +15 -0
  706. data/sig/anthropic/models/messages/batch_retrieve_params.rbs +15 -0
  707. data/sig/anthropic/models/messages/deleted_message_batch.rbs +15 -0
  708. data/sig/anthropic/models/messages/message_batch.rbs +68 -0
  709. data/sig/anthropic/models/messages/message_batch_canceled_result.rbs +15 -0
  710. data/sig/anthropic/models/messages/message_batch_errored_result.rbs +21 -0
  711. data/sig/anthropic/models/messages/message_batch_expired_result.rbs +15 -0
  712. data/sig/anthropic/models/messages/message_batch_individual_response.rbs +24 -0
  713. data/sig/anthropic/models/messages/message_batch_request_counts.rbs +36 -0
  714. data/sig/anthropic/models/messages/message_batch_result.rbs +19 -0
  715. data/sig/anthropic/models/messages/message_batch_succeeded_result.rbs +18 -0
  716. data/sig/anthropic/models/metadata.rbs +11 -0
  717. data/sig/anthropic/models/model.rbs +61 -0
  718. data/sig/anthropic/models/model_info.rbs +23 -0
  719. data/sig/anthropic/models/model_list_params.rbs +43 -0
  720. data/sig/anthropic/models/model_retrieve_params.rbs +23 -0
  721. data/sig/anthropic/models/not_found_error.rbs +13 -0
  722. data/sig/anthropic/models/overloaded_error.rbs +13 -0
  723. data/sig/anthropic/models/permission_error.rbs +13 -0
  724. data/sig/anthropic/models/plain_text_source.rbs +20 -0
  725. data/sig/anthropic/models/rate_limit_error.rbs +13 -0
  726. data/sig/anthropic/models/raw_content_block_delta.rbs +16 -0
  727. data/sig/anthropic/models/raw_content_block_delta_event.rbs +24 -0
  728. data/sig/anthropic/models/raw_content_block_start_event.rbs +38 -0
  729. data/sig/anthropic/models/raw_content_block_stop_event.rbs +14 -0
  730. data/sig/anthropic/models/raw_message_delta_event.rbs +38 -0
  731. data/sig/anthropic/models/raw_message_start_event.rbs +17 -0
  732. data/sig/anthropic/models/raw_message_stop_event.rbs +11 -0
  733. data/sig/anthropic/models/raw_message_stream_event.rbs +17 -0
  734. data/sig/anthropic/models/redacted_thinking_block.rbs +13 -0
  735. data/sig/anthropic/models/redacted_thinking_block_param.rbs +14 -0
  736. data/sig/anthropic/models/server_tool_usage.rbs +11 -0
  737. data/sig/anthropic/models/server_tool_use_block.rbs +23 -0
  738. data/sig/anthropic/models/server_tool_use_block_param.rbs +32 -0
  739. data/sig/anthropic/models/signature_delta.rbs +13 -0
  740. data/sig/anthropic/models/stop_reason.rbs +24 -0
  741. data/sig/anthropic/models/text_block.rbs +24 -0
  742. data/sig/anthropic/models/text_block_param.rbs +28 -0
  743. data/sig/anthropic/models/text_citation.rbs +15 -0
  744. data/sig/anthropic/models/text_citation_param.rbs +15 -0
  745. data/sig/anthropic/models/text_delta.rbs +13 -0
  746. data/sig/anthropic/models/thinking_block.rbs +20 -0
  747. data/sig/anthropic/models/thinking_block_param.rbs +20 -0
  748. data/sig/anthropic/models/thinking_config_disabled.rbs +11 -0
  749. data/sig/anthropic/models/thinking_config_enabled.rbs +13 -0
  750. data/sig/anthropic/models/thinking_config_param.rbs +12 -0
  751. data/sig/anthropic/models/thinking_delta.rbs +13 -0
  752. data/sig/anthropic/models/tool.rbs +54 -0
  753. data/sig/anthropic/models/tool_bash_20250124.rbs +24 -0
  754. data/sig/anthropic/models/tool_choice.rbs +15 -0
  755. data/sig/anthropic/models/tool_choice_any.rbs +15 -0
  756. data/sig/anthropic/models/tool_choice_auto.rbs +15 -0
  757. data/sig/anthropic/models/tool_choice_none.rbs +11 -0
  758. data/sig/anthropic/models/tool_choice_tool.rbs +22 -0
  759. data/sig/anthropic/models/tool_result_block_param.rbs +57 -0
  760. data/sig/anthropic/models/tool_text_editor_20250124.rbs +24 -0
  761. data/sig/anthropic/models/tool_union.rbs +15 -0
  762. data/sig/anthropic/models/tool_use_block.rbs +23 -0
  763. data/sig/anthropic/models/tool_use_block_param.rbs +32 -0
  764. data/sig/anthropic/models/url_image_source.rbs +13 -0
  765. data/sig/anthropic/models/url_pdf_source.rbs +13 -0
  766. data/sig/anthropic/models/usage.rbs +32 -0
  767. data/sig/anthropic/models/web_search_result_block.rbs +32 -0
  768. data/sig/anthropic/models/web_search_result_block_param.rbs +32 -0
  769. data/sig/anthropic/models/web_search_tool_20250305.rbs +69 -0
  770. data/sig/anthropic/models/web_search_tool_request_error.rbs +39 -0
  771. data/sig/anthropic/models/web_search_tool_result_block.rbs +24 -0
  772. data/sig/anthropic/models/web_search_tool_result_block_content.rbs +15 -0
  773. data/sig/anthropic/models/web_search_tool_result_block_param.rbs +28 -0
  774. data/sig/anthropic/models/web_search_tool_result_block_param_content.rbs +15 -0
  775. data/sig/anthropic/models/web_search_tool_result_error.rbs +39 -0
  776. data/sig/anthropic/models.rbs +221 -0
  777. data/sig/anthropic/request_options.rbs +34 -0
  778. data/sig/anthropic/resources/beta/messages/batches.rbs +49 -0
  779. data/sig/anthropic/resources/beta/messages.rbs +56 -0
  780. data/sig/anthropic/resources/beta/models.rbs +23 -0
  781. data/sig/anthropic/resources/beta.rbs +11 -0
  782. data/sig/anthropic/resources/completions.rbs +33 -0
  783. data/sig/anthropic/resources/messages/batches.rbs +41 -0
  784. data/sig/anthropic/resources/messages.rbs +51 -0
  785. data/sig/anthropic/resources/models.rbs +21 -0
  786. data/sig/anthropic/version.rbs +3 -0
  787. data/sig/anthropic/vertex.rbs +3 -0
  788. metadata +799 -77
  789. data/.circleci/config.yml +0 -45
  790. data/.github/ISSUE_TEMPLATE/bug_report.md +0 -38
  791. data/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
  792. data/.github/dependabot.yml +0 -15
  793. data/.gitignore +0 -16
  794. data/.rspec +0 -3
  795. data/.rubocop.yml +0 -30
  796. data/CODE_OF_CONDUCT.md +0 -74
  797. data/CONTRIBUTING.md +0 -3
  798. data/Gemfile +0 -13
  799. data/Gemfile.lock +0 -88
  800. data/LICENSE.txt +0 -21
  801. data/Rakefile +0 -19
  802. data/anthropic.gemspec +0 -31
  803. data/bin/console +0 -14
  804. data/bin/setup +0 -8
  805. data/lib/anthropic/compatibility.rb +0 -10
  806. data/lib/anthropic/http.rb +0 -200
  807. data/lib/anthropic/http_headers.rb +0 -38
  808. data/lib/anthropic/messages/batches.rb +0 -112
  809. data/lib/anthropic/messages/client.rb +0 -13
  810. data/lib/ruby/anthropic.rb +0 -2
  811. data/pull_request_template.md +0 -5
data/CHANGELOG.md CHANGED
@@ -1,48 +1,663 @@
1
1
  # Changelog
2
2
 
3
- All notable changes to this project will be documented in this file.
3
+ ## 1.0.0 (2025-05-21)
4
4
 
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
+ Full Changelog: [v0.1.0-beta.9...v1.0.0](https://github.com/anthropics/anthropic-sdk-ruby/compare/v0.1.0-beta.9...v1.0.0)
7
6
 
8
- ## [0.4.0] - 2025-03-25
7
+ ### Chores
9
8
 
10
- ### Added
9
+ * force utf-8 locale via `RUBYOPT` when formatting ([55bfa9d](https://github.com/anthropics/anthropic-sdk-ruby/commit/55bfa9d146b9f983d20a01b180f968c0649d171b))
10
+ * **internal:** version bump ([595b2c8](https://github.com/anthropics/anthropic-sdk-ruby/commit/595b2c8221b79acb4814384a32f3beea822e3a8d))
11
11
 
12
- - Add Batches API! Thanks to [@ignacio-chiazzo](https://github.com/ignacio-chiazzo) for previous work on this.
12
+ ## 0.1.0-beta.9 (2025-05-21)
13
13
 
14
- ## [0.3.2] - 2024-10-09
14
+ Full Changelog: [v0.1.0-beta.8...v0.1.0-beta.9](https://github.com/anthropics/anthropic-sdk-ruby/compare/v0.1.0-beta.8...v0.1.0-beta.9)
15
15
 
16
- ### Fixed
16
+ ### Features
17
17
 
18
- - Fix for use with older versions of Faraday pre-v2.5.0. Thanks to [@geeosh](https://github.com/geeosh) for the PR!
18
+ * **api:** manual updates ([c68662a](https://github.com/anthropics/anthropic-sdk-ruby/commit/c68662a15bab31a97e332a3d667ec3b580276f7a))
19
19
 
20
- ## [0.3.1] - 2024-10-09
21
20
 
22
- ### Fixed
21
+ ### Bug Fixes
23
22
 
24
- - Fix for Tool streaming. Thanks to [@Leteyski](https://github.com/Leteyski) for this fix!
23
+ * correctly instantiate sorbet type aliases for enums and unions ([e79b78d](https://github.com/anthropics/anthropic-sdk-ruby/commit/e79b78def9c79c6602bdd05ae87022682255769d))
25
24
 
26
- ## [0.3.0] - 2024-06-10
27
25
 
28
- ### Added
26
+ ### Chores
29
27
 
30
- - Add chat streaming! Thank you to the inimitable [@swombat](https://github.com/swombat) for adding this vital functionality!
28
+ * **internal:** version bump ([6d1c2e6](https://github.com/anthropics/anthropic-sdk-ruby/commit/6d1c2e6d8f50b1b4352af9cb27851f37127855ec))
29
+ * refine Yard and Sorbet types and ensure linting is turned on for examples ([530daaf](https://github.com/anthropics/anthropic-sdk-ruby/commit/530daaf8161c18635324a839bc0ba7a8d74204d6))
30
+ * remove beta message for GA release ([#613](https://github.com/anthropics/anthropic-sdk-ruby/issues/613)) ([e7cee11](https://github.com/anthropics/anthropic-sdk-ruby/commit/e7cee11d280381a5832917b984b1cf9598893eb7))
31
+ * remove legacy bedrock example ([#609](https://github.com/anthropics/anthropic-sdk-ruby/issues/609)) ([256fa36](https://github.com/anthropics/anthropic-sdk-ruby/commit/256fa36937ef642db16d126ee908f9760844b418))
32
+ * use sorbet union aliases where available ([a21753a](https://github.com/anthropics/anthropic-sdk-ruby/commit/a21753ab23550944f299c7deada3cbb03d12ad66))
33
+ * whitespaces ([f622e39](https://github.com/anthropics/anthropic-sdk-ruby/commit/f622e39936d338caa833bff46786d72a1855624a))
31
34
 
32
- ## [0.2.0] - 2024-04-25
33
35
 
34
- ### Added
36
+ ### Documentation
35
37
 
36
- - Add new Messages endpoint - thanks [@svs](https://github.com/svs) for the PR, [@obie](https://github.com/obie) for the first pass, and many others for requesting and contributions!
38
+ * README updates for GA release ([#602](https://github.com/anthropics/anthropic-sdk-ruby/issues/602)) ([6cdf0c3](https://github.com/anthropics/anthropic-sdk-ruby/commit/6cdf0c335642b64dd13825f8b3367d6f70990b3e))
37
39
 
38
- ## [0.1.0] - 2023-07-18
40
+ ## 0.1.0-beta.8 (2025-05-19)
39
41
 
40
- ### Changed
42
+ Full Changelog: [v0.1.0-beta.7...v0.1.0-beta.8](https://github.com/anthropics/anthropic-sdk-ruby/compare/v0.1.0-beta.7...v0.1.0-beta.8)
41
43
 
42
- - Got the gem working with the API. MVP
44
+ ### Chores
43
45
 
44
- ## [0.0.0] - 2023-07-12
46
+ * **internal:** version bump ([8d8501b](https://github.com/anthropics/anthropic-sdk-ruby/commit/8d8501bc3b2f24c3519574c3f04d72720c599f15))
45
47
 
46
- ### Added
48
+ ## 0.1.0-beta.7 (2025-05-15)
47
49
 
48
- - Initialise repository.
50
+ Full Changelog: [v0.1.0-beta.6...v0.1.0-beta.7](https://github.com/anthropics/anthropic-sdk-ruby/compare/v0.1.0-beta.6...v0.1.0-beta.7)
51
+
52
+ ### ⚠ BREAKING CHANGES
53
+
54
+ * rename Vertex::Client and Bedrock::Client to VertexClient and BedrockClient
55
+
56
+ ### Features
57
+
58
+ * bump default connection pool size limit to minimum of 99 ([5170cb6](https://github.com/anthropics/anthropic-sdk-ruby/commit/5170cb6172644012bb6f2580a6789c965088a01a))
59
+ * **client:** enable setting base URL from environment variable ([9cb10b1](https://github.com/anthropics/anthropic-sdk-ruby/commit/9cb10b1491761bb101269b92f4229183355ff77b))
60
+ * expose base client options as read only attributes ([2813fa7](https://github.com/anthropics/anthropic-sdk-ruby/commit/2813fa78dbc68c7c38cf0b00141f758fda2ff7c3))
61
+ * expose recursive `#to_h` conversion ([386a6a7](https://github.com/anthropics/anthropic-sdk-ruby/commit/386a6a78e1ca1f28841a6883d7a72433a9bd40a9))
62
+ * implement `#hash` for data containers ([f289994](https://github.com/anthropics/anthropic-sdk-ruby/commit/f2899941f30d6ce62414a1a866a5c9b47d54c340))
63
+ * rename Vertex::Client and Bedrock::Client to VertexClient and BedrockClient ([0506c4f](https://github.com/anthropics/anthropic-sdk-ruby/commit/0506c4f850ed6e289766ebcef7780aeee078398f))
64
+ * support sorbet aliases at the runtime ([239b6bb](https://github.com/anthropics/anthropic-sdk-ruby/commit/239b6bb99ad9a6549d30e15dfa7dffe7748fca3f))
65
+ * support specifying content-type with FilePart class ([d81f97d](https://github.com/anthropics/anthropic-sdk-ruby/commit/d81f97d27b72fcb30813d037c420657878f78c54))
66
+ * support webmock for testing ([91c3d67](https://github.com/anthropics/anthropic-sdk-ruby/commit/91c3d6748c9ead461bbffcd2fac8c621a357160c))
67
+
68
+
69
+ ### Bug Fixes
70
+
71
+ * always send idempotency header when specified as a request option ([c53396e](https://github.com/anthropics/anthropic-sdk-ruby/commit/c53396ea8e8b3afdb572c338af34f7bb0a712151))
72
+ * **client:** send correct HTTP path ([4ff371b](https://github.com/anthropics/anthropic-sdk-ruby/commit/4ff371b538e07f3a2ab6c7c4be72616bf425789b))
73
+ * ensure gem release is unaffected by renaming ([9dbcb33](https://github.com/anthropics/anthropic-sdk-ruby/commit/9dbcb339381980f9e3e809dda6e9f9fe7133463e))
74
+ * **internal:** ensure formatting always uses c.utf-8 locale ([8cdaf4e](https://github.com/anthropics/anthropic-sdk-ruby/commit/8cdaf4ec891bb4b52af12f194d83a8a65d20f72d))
75
+ * **internal:** fix formatting script for macos ([acf7bb0](https://github.com/anthropics/anthropic-sdk-ruby/commit/acf7bb0313f4ead5b714864fcd8ca65e9a7a5999))
76
+ * **internal:** update gemspec name ([6e1994d](https://github.com/anthropics/anthropic-sdk-ruby/commit/6e1994d2742d7915aceec13b51e25c700c9b82c2))
77
+ * make a typo for `FilePart.content` ([8dee858](https://github.com/anthropics/anthropic-sdk-ruby/commit/8dee858a316df5faa7e9e9153f79eee8c558c4d3))
78
+ * vertex and bedrock sorbet types ([de4bf33](https://github.com/anthropics/anthropic-sdk-ruby/commit/de4bf3384ee0047e570baee5c7dfe13a2d53aa2b))
79
+
80
+
81
+ ### Chores
82
+
83
+ * accept all nd-json mimetype variants ([1a0c3e3](https://github.com/anthropics/anthropic-sdk-ruby/commit/1a0c3e350ac480539d84fe11edb8bc8a7bde75ba))
84
+ * add generator safe directory ([cbaa546](https://github.com/anthropics/anthropic-sdk-ruby/commit/cbaa54667b544ac6afbe182fa88a59f4dda51b80))
85
+ * always check if current page is empty in `next_page?` ([ef41b35](https://github.com/anthropics/anthropic-sdk-ruby/commit/ef41b35500600a1c1f02f201832855762d49e2e2))
86
+ * amend Gemfile.lock SHA for git dependency ([617d7df](https://github.com/anthropics/anthropic-sdk-ruby/commit/617d7df30d5eec60d4c7af63a2954b6a945c4277))
87
+ * broadly detect json family of content-type headers ([eb41428](https://github.com/anthropics/anthropic-sdk-ruby/commit/eb41428c85973c2e664e053415e2777f0d2f39a7))
88
+ * **ci:** add timeout thresholds for CI jobs ([ea76f5c](https://github.com/anthropics/anthropic-sdk-ruby/commit/ea76f5c57dc556b094630150248b63a1ae7f431e))
89
+ * **ci:** only use depot for staging repos ([213392b](https://github.com/anthropics/anthropic-sdk-ruby/commit/213392bb8c4b3765684a68de2a6aea1e59c0692b))
90
+ * **ci:** run on more branches and use depot runners ([b85caa6](https://github.com/anthropics/anthropic-sdk-ruby/commit/b85caa6b9ccb6074a446f195d04b6e2eca07482d))
91
+ * consistently use string in examples, even for enums ([2f6528e](https://github.com/anthropics/anthropic-sdk-ruby/commit/2f6528e4f6b4b6317e3f1903bd1381423f0aa8eb))
92
+ * documentation improvements ([e479e74](https://github.com/anthropics/anthropic-sdk-ruby/commit/e479e7423fd7db99723af7e000af7915d9025128))
93
+ * explicitly mark apis public under `Internal` module ([5adf74c](https://github.com/anthropics/anthropic-sdk-ruby/commit/5adf74c6032dd6bc304f936968d1f90391fc8654))
94
+ * fix misc linting / minor issues ([753f93a](https://github.com/anthropics/anthropic-sdk-ruby/commit/753f93acc061764313883e12c3e2c21a65c89344))
95
+ * **internal:** always run post-processing when formatting when syntax_tree ([6b66ae9](https://github.com/anthropics/anthropic-sdk-ruby/commit/6b66ae9b0b7bcb695a531ea37242b6ab666490b7))
96
+ * **internal:** annotate request options with type aliases in sorbet ([78301c8](https://github.com/anthropics/anthropic-sdk-ruby/commit/78301c845d2f19ca67af13310443699801ca715b))
97
+ * **internal:** codegen related update ([c8424fb](https://github.com/anthropics/anthropic-sdk-ruby/commit/c8424fb051fdd61fa9ea747acb3df264409b01e7))
98
+ * **internal:** codegen related update ([ea9c02e](https://github.com/anthropics/anthropic-sdk-ruby/commit/ea9c02ed98b2db9103353d5a427daa2fe5531782))
99
+ * **internal:** codegen related update ([e60bcc4](https://github.com/anthropics/anthropic-sdk-ruby/commit/e60bcc4b11cd93720300277d28302d86d8566762))
100
+ * **internal:** codegen related update ([453af53](https://github.com/anthropics/anthropic-sdk-ruby/commit/453af530dea415d610566e2f8a88f317b5950c0f))
101
+ * **internal:** contribute.md and contributor QoL improvements ([c48b418](https://github.com/anthropics/anthropic-sdk-ruby/commit/c48b418733b923bf8d470004df4a179aba989e96))
102
+ * **internal:** improve response envelope unwrap functionality ([b807072](https://github.com/anthropics/anthropic-sdk-ruby/commit/b8070726b4d2b2d2612e4141a4c5122935715f76))
103
+ * **internal:** loosen internal type restrictions ([7675f8e](https://github.com/anthropics/anthropic-sdk-ruby/commit/7675f8efad31278d372ac1d778fe542202706681))
104
+ * **internal:** minor sync ([14829b1](https://github.com/anthropics/anthropic-sdk-ruby/commit/14829b1c97379325af6c716fd25eec7cf75eb7bc))
105
+ * **internal:** minor touch ups on sdk internals ([3b4a873](https://github.com/anthropics/anthropic-sdk-ruby/commit/3b4a873177d9cdddcb6c07440619da007615c0bd))
106
+ * **internal:** minor type annotation improvements ([e493aef](https://github.com/anthropics/anthropic-sdk-ruby/commit/e493aef841e1c86ef2954c24e029fd3719d5982d))
107
+ * **internal:** mostly README touch ups ([b29f388](https://github.com/anthropics/anthropic-sdk-ruby/commit/b29f3887bd12df092cd8398ac6fb82b327c7d2b1))
108
+ * **internal:** protect SSE parsing pipeline from broken UTF-8 characters ([74056ed](https://github.com/anthropics/anthropic-sdk-ruby/commit/74056edcb149d9237db1ef83f6afab46ce489689))
109
+ * **internal:** remove unnecessary `rbi/lib` folder ([f238fa8](https://github.com/anthropics/anthropic-sdk-ruby/commit/f238fa8af1c36616dfb87ee102165183684898a9))
110
+ * **internal:** version bump ([8478780](https://github.com/anthropics/anthropic-sdk-ruby/commit/8478780254d9ea6b489baccefe0b4a33c314e0c8))
111
+ * make internal types pretty print ([99c01e4](https://github.com/anthropics/anthropic-sdk-ruby/commit/99c01e43cceeebd97875bdfa8551352076dfb69f))
112
+ * make sorbet enums easier to read ([1909c6e](https://github.com/anthropics/anthropic-sdk-ruby/commit/1909c6ed7049fcf0d3b05a32318bd142f8116af7))
113
+ * migrate away from deprecated `JSON#fast_generate` ([80308a9](https://github.com/anthropics/anthropic-sdk-ruby/commit/80308a9b311a0a2b9ee1311fdebce93e0aa0427e))
114
+ * more accurate type annotations and aliases ([54c04df](https://github.com/anthropics/anthropic-sdk-ruby/commit/54c04df8f8f760aa9eed2466e1af1712a41f8c69))
115
+ * move bedrock and vertex under anthropic/helpers ([#574](https://github.com/anthropics/anthropic-sdk-ruby/issues/574)) ([c2f3554](https://github.com/anthropics/anthropic-sdk-ruby/commit/c2f355403be66637d615ff9e8f2f79f27eb35af8))
116
+ * re-export top level models under library namespace ([41a5161](https://github.com/anthropics/anthropic-sdk-ruby/commit/41a516134b3a9f4ac62d02a033369fee00162e36))
117
+ * refine `#inspect` and `#to_s` for model classes ([de00260](https://github.com/anthropics/anthropic-sdk-ruby/commit/de002609060018c1f61ec5ed84cc497b6a0ef7bb))
118
+ * remove Gemfile.lock during bootstrap ([7d671aa](https://github.com/anthropics/anthropic-sdk-ruby/commit/7d671aa814ff52569a8a372691a8964924a6e30c))
119
+ * reorganize type aliases ([94c0258](https://github.com/anthropics/anthropic-sdk-ruby/commit/94c0258dc85df0094da63365021f1301c5700a7a))
120
+ * revert ignoring Gemfile.lock ([47413aa](https://github.com/anthropics/anthropic-sdk-ruby/commit/47413aa7cae463b941b59f4b963b0d3d12eb60eb))
121
+ * show truncated parameter docs in yard ([679c27b](https://github.com/anthropics/anthropic-sdk-ruby/commit/679c27b578b746360f92e778c48c9e9bb105174c))
122
+ * simplify yard annotations by removing most `@!parse` directives ([5b23af5](https://github.com/anthropics/anthropic-sdk-ruby/commit/5b23af5a32f8317576e1f37e2685fead060956a6))
123
+ * update README with recommended editor plugins ([0c706bb](https://github.com/anthropics/anthropic-sdk-ruby/commit/0c706bbcc23d6affe8223cdf7ec06cc75a241859))
124
+ * use `@!method` instead of `@!parse` for virtual method type definitions ([2834dd6](https://github.com/anthropics/anthropic-sdk-ruby/commit/2834dd6f8bcb7ac7fbf2319c3ca948a8ecaa6c07))
125
+ * validate request option coercion correctness ([cd89ec5](https://github.com/anthropics/anthropic-sdk-ruby/commit/cd89ec570f37d602b594de786863e6d146d98833))
126
+
127
+
128
+ ### Documentation
129
+
130
+ * fix misplaced coming soon snippet in README.md ([6979aae](https://github.com/anthropics/anthropic-sdk-ruby/commit/6979aae6105c9a26557e756f3a62963c59f9c742))
131
+ * illustrate environmental defaults for auth variables ([3f295d8](https://github.com/anthropics/anthropic-sdk-ruby/commit/3f295d8348e7e1c841b99911aa28e49a1b13a3cc))
132
+ * **readme:** fix typo ([6effd14](https://github.com/anthropics/anthropic-sdk-ruby/commit/6effd148a3510980e40ecada7b05dd4b856ef5e4))
133
+ * rewrite much of README.md for readability ([aaf7e8c](https://github.com/anthropics/anthropic-sdk-ruby/commit/aaf7e8c5ff69c1e209b7af078e3723418ec25b3c))
134
+ * update documentation links to be more uniform ([6b95412](https://github.com/anthropics/anthropic-sdk-ruby/commit/6b95412c1193c99bd7f1c701929e76a021f6e39e))
135
+
136
+ ## 0.1.0-beta.6 (2025-04-11)
137
+
138
+ Full Changelog: [v0.1.0-beta.5...v0.1.0-beta.6](https://github.com/anthropics/anthropic-sdk-ruby/compare/v0.1.0-beta.5...v0.1.0-beta.6)
139
+
140
+ ### Bug Fixes
141
+
142
+ * inaccuracies in the README.md ([9fa4a77](https://github.com/anthropics/anthropic-sdk-ruby/commit/9fa4a7772cfd01ec0c7d2ec20205740390984d27))
143
+ * outdated examples ([c82c0e3](https://github.com/anthropics/anthropic-sdk-ruby/commit/c82c0e3eb1cb9e56f6bb2ff7fbbdd98afae15bed))
144
+
145
+
146
+ ### Chores
147
+
148
+ * fix lsp configuration file for local development ([2928009](https://github.com/anthropics/anthropic-sdk-ruby/commit/2928009aecdcf522fcf2d2f71e82eb4b72e4693a))
149
+ * **internal:** update readme with pinned issue thread ([4ef25a4](https://github.com/anthropics/anthropic-sdk-ruby/commit/4ef25a4c1a5a8e3a1a03daf6c614d6da6fd9acba))
150
+ * **internal:** version bump ([b12584c](https://github.com/anthropics/anthropic-sdk-ruby/commit/b12584c4f49946c81bc067339d9627ba8b32763b))
151
+
152
+ ## 0.1.0-beta.5 (2025-04-09)
153
+
154
+ Full Changelog: [v0.1.0-beta.4...v0.1.0-beta.5](https://github.com/anthropics/anthropic-sdk-ruby/compare/v0.1.0-beta.4...v0.1.0-beta.5)
155
+
156
+ ### Chores
157
+
158
+ * **internal:** reduce CI branch coverage ([52ba9ab](https://github.com/anthropics/anthropic-sdk-ruby/commit/52ba9ab8d17bd798fdfbdcdaeb7765500c6a35c6))
159
+ * **internal:** version bump ([5eed725](https://github.com/anthropics/anthropic-sdk-ruby/commit/5eed725fbe49fe86a7bf85331c40880a7f9ac3e7))
160
+
161
+ ## 0.1.0-beta.4 (2025-04-09)
162
+
163
+ Full Changelog: [v0.1.0-beta.3...v0.1.0-beta.4](https://github.com/anthropics/anthropic-sdk-ruby/compare/v0.1.0-beta.3...v0.1.0-beta.4)
164
+
165
+ ### Chores
166
+
167
+ * **internal:** version bump ([e539946](https://github.com/anthropics/anthropic-sdk-ruby/commit/e539946a885564f7197ae0f869d28d59095de410))
168
+
169
+ ## 0.1.0-beta.3 (2025-04-09)
170
+
171
+ Full Changelog: [v0.1.0-beta.2...v0.1.0-beta.3](https://github.com/anthropics/anthropic-sdk-ruby/compare/v0.1.0-beta.2...v0.1.0-beta.3)
172
+
173
+ ### Chores
174
+
175
+ * add release trigger to publish-gem.yml ([660d3a0](https://github.com/anthropics/anthropic-sdk-ruby/commit/660d3a04a4db23ffa900c8ed8c46abb65fb2a202))
176
+ * **internal:** version bump ([ff3effe](https://github.com/anthropics/anthropic-sdk-ruby/commit/ff3effe91c77f2f9adfca40f57031d4a7a01c4fb))
177
+
178
+ ## 0.1.0-beta.2 (2025-04-09)
179
+
180
+ Full Changelog: [v0.1.0-alpha.1...v0.1.0-beta.2](https://github.com/anthropics/anthropic-sdk-ruby/compare/v0.1.0-alpha.1...v0.1.0-beta.2)
181
+
182
+ ### Features
183
+
184
+ * **api:** manual updates ([#75](https://github.com/anthropics/anthropic-sdk-ruby/issues/75)) ([5a6b5cc](https://github.com/anthropics/anthropic-sdk-ruby/commit/5a6b5cc8d49083a7ebc28d48d9bb8d7c214c8a0a))
185
+ * use Pathname alongside raw IO handles for file uploads ([#68](https://github.com/anthropics/anthropic-sdk-ruby/issues/68)) ([a900382](https://github.com/anthropics/anthropic-sdk-ruby/commit/a9003825c9b4f377dba511f4d00aa0e834728f08))
186
+
187
+
188
+ ### Bug Fixes
189
+
190
+ * **internal:** update release-please to use ruby strategy for README.md ([#73](https://github.com/anthropics/anthropic-sdk-ruby/issues/73)) ([f0466d1](https://github.com/anthropics/anthropic-sdk-ruby/commit/f0466d1b15f68d822df6bc73c6d9c80c7a330d4f))
191
+ * raise connection error for errors that result from HTTP transports ([#70](https://github.com/anthropics/anthropic-sdk-ruby/issues/70)) ([0885db3](https://github.com/anthropics/anthropic-sdk-ruby/commit/0885db3f4c0ec1b43e91231a8ed922ab9c4a428e))
192
+
193
+
194
+ ### Chores
195
+
196
+ * add README docs for using solargraph when installing gem from git ([#67](https://github.com/anthropics/anthropic-sdk-ruby/issues/67)) ([bf8e537](https://github.com/anthropics/anthropic-sdk-ruby/commit/bf8e5371a291e1fe0b335e734a7208ff8b3d739c))
197
+ * ensure readme.md is bumped when release please updates versions ([#72](https://github.com/anthropics/anthropic-sdk-ruby/issues/72)) ([99323d0](https://github.com/anthropics/anthropic-sdk-ruby/commit/99323d08371ecc5b494fd0604619d5815410202f))
198
+ * **internal:** expand CI branch coverage ([#74](https://github.com/anthropics/anthropic-sdk-ruby/issues/74)) ([a058c31](https://github.com/anthropics/anthropic-sdk-ruby/commit/a058c31e98cd5920705380539f69222321d2a1b7))
199
+ * **internal:** version bump ([0d1f04a](https://github.com/anthropics/anthropic-sdk-ruby/commit/0d1f04a5ac2f8a323e3590d43bd7a6e550115fdc))
200
+ * loosen const and integer coercion rules ([#71](https://github.com/anthropics/anthropic-sdk-ruby/issues/71)) ([6fcb07c](https://github.com/anthropics/anthropic-sdk-ruby/commit/6fcb07c70a269a362afc6ead4b670ce2f8b03470))
201
+ * update readme sorbet example ([5fee7e7](https://github.com/anthropics/anthropic-sdk-ruby/commit/5fee7e7484ca3c7587137804cbafe1afabe49364))
202
+
203
+ ## 0.1.0-alpha.1 (2025-04-08)
204
+
205
+ Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/anthropics/anthropic-sdk-ruby/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)
206
+
207
+ ### ⚠ BREAKING CHANGES
208
+
209
+ * bump min supported ruby version to 3.1 (oldest non-EOL) ([#46](https://github.com/anthropics/anthropic-sdk-ruby/issues/46))
210
+ * remove top level type aliases to relocated classes ([#44](https://github.com/anthropics/anthropic-sdk-ruby/issues/44))
211
+ * use tagged enums in sorbet type definitions ([#5](https://github.com/anthropics/anthropic-sdk-ruby/issues/5))
212
+ * support `for item in stream` style iteration on `Stream`s ([#1](https://github.com/anthropics/anthropic-sdk-ruby/issues/1))
213
+ * encode objects in multipart encoding as JSON
214
+ * base page should be module instead of class
215
+ * breaking change - improved request options signatures
216
+ * breaking change: support const enums
217
+ * (breaking change) flatter error hierarchy
218
+
219
+ ### Features
220
+
221
+ * ! (breaking change) introduce nesting for models under deeply nested resources ([f5e32b6](https://github.com/anthropics/anthropic-sdk-ruby/commit/f5e32b6890b4b97d6ef555565d63fd8a233fc0b1))
222
+ * ! (breaking change) pull path params not in the last position into the params argument ([0f8f0d3](https://github.com/anthropics/anthropic-sdk-ruby/commit/0f8f0d3b22c9f3efed74e3a7fe2fb1adb877ba87))
223
+ * (breaking change) flatter error hierarchy ([a825225](https://github.com/anthropics/anthropic-sdk-ruby/commit/a825225707d55f91176b903c363b5e76a7f1e906))
224
+ * add basic usage examples ([ecd4278](https://github.com/anthropics/anthropic-sdk-ruby/commit/ecd427858454f61628667499ecc8994e60f085ba))
225
+ * add deprecation notice to enum members and resources ([3782933](https://github.com/anthropics/anthropic-sdk-ruby/commit/3782933604daed0ac4b2072dedab212b722e23f0))
226
+ * add jsonl support ([aaf602d](https://github.com/anthropics/anthropic-sdk-ruby/commit/aaf602d1795a06a01bd1c849b6f8ca541676f5db))
227
+ * add reference links in yard ([#33](https://github.com/anthropics/anthropic-sdk-ruby/issues/33)) ([8bda0cb](https://github.com/anthropics/anthropic-sdk-ruby/commit/8bda0cb09407884f6b9a828845348d46cf1119d9))
228
+ * add SKIP_BREW env var to ./scripts/bootstrap ([59df81e](https://github.com/anthropics/anthropic-sdk-ruby/commit/59df81e0517dd658d4b885c87a88dec8f88603d4))
229
+ * allow all valid `JSON` types to be encoded ([#55](https://github.com/anthropics/anthropic-sdk-ruby/issues/55)) ([3dfe51b](https://github.com/anthropics/anthropic-sdk-ruby/commit/3dfe51b4832b47a36b22007c4480d75114f8dae1))
230
+ * **api:** add citations ([7fc3326](https://github.com/anthropics/anthropic-sdk-ruby/commit/7fc33265423046e2eb66c2623f84d788cf01068e))
231
+ * **api:** add claude-3.7 + support for thinking ([1c92c58](https://github.com/anthropics/anthropic-sdk-ruby/commit/1c92c583868b09a6c13ac02bfad5d7a92d0de1f7))
232
+ * **api:** add message batch delete endpoint ([ffc84eb](https://github.com/anthropics/anthropic-sdk-ruby/commit/ffc84eb557b65b7408c9f34aa66d5bc0fc55768e))
233
+ * **api:** add message batches api ([f8bef83](https://github.com/anthropics/anthropic-sdk-ruby/commit/f8bef83e309e6f54d29e4f00268dc344241f8032))
234
+ * **api:** add message token counting & PDFs support ([979744f](https://github.com/anthropics/anthropic-sdk-ruby/commit/979744f4b520a341ea1508e44e5b33f9362d1029))
235
+ * **api:** add new haiku model ([69c38f7](https://github.com/anthropics/anthropic-sdk-ruby/commit/69c38f74e4af30eff3d9bfd77a657b1e8a02f88e))
236
+ * **api:** add new model and `computer-use-2024-10-22` beta ([742f2a7](https://github.com/anthropics/anthropic-sdk-ruby/commit/742f2a78ee1b82457af4c7582033d87d9f38283f))
237
+ * **api:** add support for disabling tool calls ([06330df](https://github.com/anthropics/anthropic-sdk-ruby/commit/06330dffe22ab456bd075e3513b095ca5fe60605))
238
+ * **api:** add URL source blocks for images and PDFs ([8f6cc00](https://github.com/anthropics/anthropic-sdk-ruby/commit/8f6cc00894c42886de43c451595338b503f1ff44))
239
+ * **api:** extract ContentBlockDelta events into their own schemas ([#34](https://github.com/anthropics/anthropic-sdk-ruby/issues/34)) ([e5bbcc4](https://github.com/anthropics/anthropic-sdk-ruby/commit/e5bbcc45983bbdff009b9db9ff5b0d5ab6af2483))
240
+ * **api:** general availability updates ([a7111aa](https://github.com/anthropics/anthropic-sdk-ruby/commit/a7111aaa0f9e21b40278d7d2557ac2a81ca63ef6))
241
+ * **api:** manual updates ([236007c](https://github.com/anthropics/anthropic-sdk-ruby/commit/236007c1813c01b8b23c4d5265bded60598dc4ca))
242
+ * **api:** manual updates ([#40](https://github.com/anthropics/anthropic-sdk-ruby/issues/40)) ([54a5afd](https://github.com/anthropics/anthropic-sdk-ruby/commit/54a5afd80dd8edcdfb9e536d35a9d5a892c07e8b))
243
+ * **api:** manual updates ([#45](https://github.com/anthropics/anthropic-sdk-ruby/issues/45)) ([bfd23d7](https://github.com/anthropics/anthropic-sdk-ruby/commit/bfd23d79ed884676839762e836342da869f5e1e5))
244
+ * breaking change - improved request options signatures ([90fd7b0](https://github.com/anthropics/anthropic-sdk-ruby/commit/90fd7b001899800ffa717715ddcfaa3e3dcc7fc4))
245
+ * breaking change: support const enums ([b68ff43](https://github.com/anthropics/anthropic-sdk-ruby/commit/b68ff43484498d3715daa46da014a24f3a506442))
246
+ * bump min supported ruby version to 3.1 (oldest non-EOL) ([#46](https://github.com/anthropics/anthropic-sdk-ruby/issues/46)) ([360c3e3](https://github.com/anthropics/anthropic-sdk-ruby/commit/360c3e3a5fd455fd7c2217173b685503331e8aeb))
247
+ * bundle typing manifests with gem release ([cc7ce7e](https://github.com/anthropics/anthropic-sdk-ruby/commit/cc7ce7ef3f3fca39a8766f8c8b141f73c8118aaa))
248
+ * **client:** configurable timeouts ([3907f0b](https://github.com/anthropics/anthropic-sdk-ruby/commit/3907f0b22be2fc9eac8f61482046f0d8800cf624))
249
+ * **client:** improved .inspect output ([20b9526](https://github.com/anthropics/anthropic-sdk-ruby/commit/20b9526bb8503d9692753950650fefb455df8a92))
250
+ * **client:** send `X-Stainless-Read-Timeout` header ([8077201](https://github.com/anthropics/anthropic-sdk-ruby/commit/80772011e1b01b871bf1f35e21d83155ee917f76))
251
+ * **client:** support results endpoint ([84aee14](https://github.com/anthropics/anthropic-sdk-ruby/commit/84aee14d4da446e19a937757b3090b6508284a00))
252
+ * **client:** support rightward assignment ([037d377](https://github.com/anthropics/anthropic-sdk-ruby/commit/037d377178c216c7284b7a808a5bf6a683040450))
253
+ * consistently accept `AnyHash` types in parameter positions in sorbet ([#10](https://github.com/anthropics/anthropic-sdk-ruby/issues/10)) ([5b87e3a](https://github.com/anthropics/anthropic-sdk-ruby/commit/5b87e3a45085ce9564852411ff6bd9a00f2f680f))
254
+ * elide anonymous enums into unions ([cda05e9](https://github.com/anthropics/anthropic-sdk-ruby/commit/cda05e9aa0dd0484a45b4694735db558618843b0))
255
+ * enable type annotations ([8efbf84](https://github.com/anthropics/anthropic-sdk-ruby/commit/8efbf84e789cd434a3d6e32b4d4e629983b3c28b))
256
+ * escape path params ([7d95a65](https://github.com/anthropics/anthropic-sdk-ruby/commit/7d95a6551ae2af350b2aad5308e58db95e530751))
257
+ * escape path params ([20323f4](https://github.com/anthropics/anthropic-sdk-ruby/commit/20323f4dcb37aa8686eccd8d4ab2350172c8c8bd))
258
+ * examples for working with discriminated unions ([815f6f1](https://github.com/anthropics/anthropic-sdk-ruby/commit/815f6f11698e10950dc2115b1de288dc3d4a8f65))
259
+ * exercise connection pool in tests ([4758f2f](https://github.com/anthropics/anthropic-sdk-ruby/commit/4758f2f69bfbf8491b76f491bde6fa4f24a671e7))
260
+ * explicitly mark more internal methods with `private` ([c3e2c09](https://github.com/anthropics/anthropic-sdk-ruby/commit/c3e2c09d295b6ce365ec3a0311f86e5e2ba57f47))
261
+ * fix `to_enum` and `enum_for` built-ins for pagination classes ([1e8f0d7](https://github.com/anthropics/anthropic-sdk-ruby/commit/1e8f0d72e00907060b9df8f5f490754ff2f42218))
262
+ * generate enum examples ([6707fde](https://github.com/anthropics/anthropic-sdk-ruby/commit/6707fdea9040664f1010794aaf86b2b21bf6f414))
263
+ * generate params classes ([b63d653](https://github.com/anthropics/anthropic-sdk-ruby/commit/b63d6536fd5dd18d6383773e1b3453bfe15e0a23))
264
+ * generate some omitted class names in doc comments ([cf3d9cd](https://github.com/anthropics/anthropic-sdk-ruby/commit/cf3d9cd398495f253ce1421861ed5f37c97e36f0))
265
+ * implement `to_json` for base model ([#39](https://github.com/anthropics/anthropic-sdk-ruby/issues/39)) ([2b8090e](https://github.com/anthropics/anthropic-sdk-ruby/commit/2b8090eae10fd136f98f3221d5908656b9b40693))
266
+ * implement subsumption operator for base classes ([83e9ed4](https://github.com/anthropics/anthropic-sdk-ruby/commit/83e9ed4201cdc3f0ead4f522bbcc6e54705d9557))
267
+ * implement unions ([ede8afc](https://github.com/anthropics/anthropic-sdk-ruby/commit/ede8afc02bd630c4b87047400e1e7577ce14503c))
268
+ * implement unions ([7079e3b](https://github.com/anthropics/anthropic-sdk-ruby/commit/7079e3b7ee61fc09f8a6880b3932dd4c6901d5d4))
269
+ * improve `ArrayOf` DSL to use `:[]` instead of `.new` ([8f1a061](https://github.com/anthropics/anthropic-sdk-ruby/commit/8f1a06136c031fb71d5d17d7943f2cb060513f42))
270
+ * improve interface readability, especially in `*.rbi` ([5db7d5c](https://github.com/anthropics/anthropic-sdk-ruby/commit/5db7d5c21a6e7225f4c0fecdd7d624c360947823))
271
+ * improve sorbet attribute signatures ([3d137b9](https://github.com/anthropics/anthropic-sdk-ruby/commit/3d137b9241e491fdb2d260080db7364774652c72))
272
+ * inline sorbet type aliases ([7219236](https://github.com/anthropics/anthropic-sdk-ruby/commit/7219236159271fa797f92c91b3b563ae5eb204b5))
273
+ * **internal:** converter interface should recurse without schema ([#24](https://github.com/anthropics/anthropic-sdk-ruby/issues/24)) ([0d86d2b](https://github.com/anthropics/anthropic-sdk-ruby/commit/0d86d2bc685322f794db6f1d07e66a0e970d9049))
274
+ * **internal:** modified tests for thread and fiber safety ([e4d8d96](https://github.com/anthropics/anthropic-sdk-ruby/commit/e4d8d96649c891c8d232cb26fad9398aac94d725))
275
+ * isolate platform headers ([52ab4f8](https://github.com/anthropics/anthropic-sdk-ruby/commit/52ab4f8415472508b6e34e9faab54387e150b90c))
276
+ * link response models to their methods in yard doc ([#36](https://github.com/anthropics/anthropic-sdk-ruby/issues/36)) ([25b5673](https://github.com/anthropics/anthropic-sdk-ruby/commit/25b5673b479eb282d8972f19a3745d043518403f))
277
+ * make `build_request` overridable ([29e3135](https://github.com/anthropics/anthropic-sdk-ruby/commit/29e313539d6227c9e3a11236fc2fbebeddf1bc3d))
278
+ * make enum classes thread safe ([203ea8e](https://github.com/anthropics/anthropic-sdk-ruby/commit/203ea8ef2e94df101ed3f451c16e6dc969fe5e77))
279
+ * modernize sdk internals ([63e1284](https://github.com/anthropics/anthropic-sdk-ruby/commit/63e1284ece645a08e2d692440204d1ea118f2244))
280
+ * more consistent ArrayOf and HashOf DSL with re: lambda usage ([bd9c771](https://github.com/anthropics/anthropic-sdk-ruby/commit/bd9c771e4885f5fed1d5a143e4321c3738ef8f32))
281
+ * more consistent ArrayOf and HashOf DSL with re: lambda usage ([ae072d7](https://github.com/anthropics/anthropic-sdk-ruby/commit/ae072d7ea84e706b7526b3f22fac55eb6e31ac2d))
282
+ * prevent tapioca from introspecting the gem internals ([#9](https://github.com/anthropics/anthropic-sdk-ruby/issues/9)) ([3d7f0a8](https://github.com/anthropics/anthropic-sdk-ruby/commit/3d7f0a8ca9700bc20c894567c0652dfebc95e590))
283
+ * rb: render kwargs in constructors ([67e0961](https://github.com/anthropics/anthropic-sdk-ruby/commit/67e0961aa1cf5c9b84aa376f8a0c8d2609e3eda6))
284
+ * remove top level type aliases to relocated classes ([#44](https://github.com/anthropics/anthropic-sdk-ruby/issues/44)) ([41cbf0b](https://github.com/anthropics/anthropic-sdk-ruby/commit/41cbf0b7e05bf87a574bf79c617309757f5d818a))
285
+ * rename fields when they collide with ruby internals ([67f68dc](https://github.com/anthropics/anthropic-sdk-ruby/commit/67f68dc59e2e0f58061ce2afb4a320c0d65a7eba))
286
+ * render yard docs with hash and nil? info ([5626317](https://github.com/anthropics/anthropic-sdk-ruby/commit/56263177532d4bccc8229d051ea05ed1fe682e6c))
287
+ * ruby add nilability annotations ([8a7bf3e](https://github.com/anthropics/anthropic-sdk-ruby/commit/8a7bf3e18085a4b3345ea2aac3bb210f9e8656c6))
288
+ * run rubocop in multiple processes when formatting ([0291b49](https://github.com/anthropics/anthropic-sdk-ruby/commit/0291b49a288d313b85c2c21c157f42c1b42701a5))
289
+ * seal private constructors ([bf74451](https://github.com/anthropics/anthropic-sdk-ruby/commit/bf74451cc475989c3338b2d8198650c78162e8d6))
290
+ * support `for item in stream` style iteration on `Stream`s ([#1](https://github.com/anthropics/anthropic-sdk-ruby/issues/1)) ([404600c](https://github.com/anthropics/anthropic-sdk-ruby/commit/404600caa127d8db3d3b2c27a1283122f48f69c4))
291
+ * support client level methods ([b190c00](https://github.com/anthropics/anthropic-sdk-ruby/commit/b190c009c19d5279276ae04db80ead48c26bd624))
292
+ * support jsonl uploads ([b1c36cf](https://github.com/anthropics/anthropic-sdk-ruby/commit/b1c36cf854cf87cc2abd6121541175ee37aba12a))
293
+ * support overlapping HTTP requests in same Fiber ([8884a36](https://github.com/anthropics/anthropic-sdk-ruby/commit/8884a36938be24f84e2dc839f61668f7da0b9dfb))
294
+ * support query, header, and body params that have identical names ([#54](https://github.com/anthropics/anthropic-sdk-ruby/issues/54)) ([0a47d58](https://github.com/anthropics/anthropic-sdk-ruby/commit/0a47d58d360b6b42f9fb397cee22bae32d52bb70))
295
+ * support solargraph generics ([#49](https://github.com/anthropics/anthropic-sdk-ruby/issues/49)) ([e2f8051](https://github.com/anthropics/anthropic-sdk-ruby/commit/e2f8051311e2ed5dde2f99a88bfcdf8ee5be7e01))
296
+ * support streaming uploads ([54cd6e7](https://github.com/anthropics/anthropic-sdk-ruby/commit/54cd6e739e6154fd3f8a366dbf755ecc800724bc))
297
+ * switch to yard `@!parse` directive for init signatures instead of dummy methods ([30e430a](https://github.com/anthropics/anthropic-sdk-ruby/commit/30e430a1891c263932a353cac9f4385a1f21e773))
298
+ * unify param & return types in yard ([5c33a30](https://github.com/anthropics/anthropic-sdk-ruby/commit/5c33a3048ffb561f7f90a5be66373bd58586cd9e))
299
+ * use pattern matching in parsing pagination responses ([132f23a](https://github.com/anthropics/anthropic-sdk-ruby/commit/132f23a2c56155d618c20eca7accb4abf85e39a2))
300
+ * use tagged enums in sorbet type definitions ([#5](https://github.com/anthropics/anthropic-sdk-ruby/issues/5)) ([ebdf7bc](https://github.com/anthropics/anthropic-sdk-ruby/commit/ebdf7bc2e14c9e29287ae85de541fde54f6b22c8))
301
+
302
+
303
+ ### Bug Fixes
304
+
305
+ * base client type annotations ([1514045](https://github.com/anthropics/anthropic-sdk-ruby/commit/15140450700479fb0aa738768cdcb4fbb41fc525))
306
+ * base page should be module instead of class ([b95df92](https://github.com/anthropics/anthropic-sdk-ruby/commit/b95df92d0fb45ae6f85c5d509c5bbc7da9eaffaf))
307
+ * **beta:** merge betas param with the default value ([c16fa7c](https://github.com/anthropics/anthropic-sdk-ruby/commit/c16fa7c64da11469705caa1bc831f385e3d96486))
308
+ * **beta:** merge betas param with the default value ([217f24b](https://github.com/anthropics/anthropic-sdk-ruby/commit/217f24bd034281d52a45b7fa8391a4207f2eec96))
309
+ * better support header parameters ([f6fa0d5](https://github.com/anthropics/anthropic-sdk-ruby/commit/f6fa0d5d1056e37c9a8988619a500f3e4fb29838))
310
+ * **client:** deduplicate stop reason type ([#18](https://github.com/anthropics/anthropic-sdk-ruby/issues/18)) ([2688c3b](https://github.com/anthropics/anthropic-sdk-ruby/commit/2688c3bbfec6365057ac01cb01efee377b0dc53f))
311
+ * **client:** point accessors to the correct keys ([7f4152d](https://github.com/anthropics/anthropic-sdk-ruby/commit/7f4152d13445a044bd4bb1c2301adc6be16cd61f))
312
+ * **client:** various items, including keying connection pool by origin, not host ([ec36fe1](https://github.com/anthropics/anthropic-sdk-ruby/commit/ec36fe126bf160d285c0c4f0ccda134ff7e87fc1))
313
+ * converter now rejects unexpected arguments correctly ([7a4e479](https://github.com/anthropics/anthropic-sdk-ruby/commit/7a4e479d298bcc2243d159a8c23ffc2607944fbc))
314
+ * converter should transform stringio into string where applicable ([#57](https://github.com/anthropics/anthropic-sdk-ruby/issues/57)) ([f295fc0](https://github.com/anthropics/anthropic-sdk-ruby/commit/f295fc03d5718209ff5e77d84906ae71b3676a3a))
315
+ * correctly annotate nil values in yard ([b2a17dc](https://github.com/anthropics/anthropic-sdk-ruby/commit/b2a17dc2e586ca85525bb05418664a5e4fc40bd2))
316
+ * correctly geneate array and map schemas with models ([1943720](https://github.com/anthropics/anthropic-sdk-ruby/commit/194372003c37f9a22975f4a0c780afbecdee4438))
317
+ * correctly mark optional arrays and hashes as nullable ([c189028](https://github.com/anthropics/anthropic-sdk-ruby/commit/c1890281149d1afae26917e4be142c87946012c8))
318
+ * correctly mark some error values as optional ([e49c40b](https://github.com/anthropics/anthropic-sdk-ruby/commit/e49c40ba9a4db9226d179bc9ce419a017e27fe3f))
319
+ * encode objects in multipart encoding as JSON ([5474b7c](https://github.com/anthropics/anthropic-sdk-ruby/commit/5474b7cd63526f19f83fa240bc800056d42a4360))
320
+ * enums should only coerce matching symbols into strings ([4d61b49](https://github.com/anthropics/anthropic-sdk-ruby/commit/4d61b49f895392832daa8a015df58568f1686a13))
321
+ * error classes did not call `.to_s` on error uri ([3ac9239](https://github.com/anthropics/anthropic-sdk-ruby/commit/3ac92395e1de0f40d6ca30957a176f153b6d2daf))
322
+ * exclude duplicate streaming determinant fields ([db212db](https://github.com/anthropics/anthropic-sdk-ruby/commit/db212dbcd10b70f899f890c58c15aa8f677c5676))
323
+ * fix union variant duplication ([2e32e31](https://github.com/anthropics/anthropic-sdk-ruby/commit/2e32e3181cfd76314185de62589499c8dbdcf8fa))
324
+ * pages should be able to accept non-converter models ([#13](https://github.com/anthropics/anthropic-sdk-ruby/issues/13)) ([7f3f1b9](https://github.com/anthropics/anthropic-sdk-ruby/commit/7f3f1b91293e679e0ce527747d9f146dbae33a58))
325
+ * path interpolation template strings ([#32](https://github.com/anthropics/anthropic-sdk-ruby/issues/32)) ([04f7783](https://github.com/anthropics/anthropic-sdk-ruby/commit/04f7783acce776833722c05abb10635bf827cbf7))
326
+ * pre-release version string should match ruby, not semver conventions ([#48](https://github.com/anthropics/anthropic-sdk-ruby/issues/48)) ([872c0b0](https://github.com/anthropics/anthropic-sdk-ruby/commit/872c0b0421903354f14eb89bbc59fe923430528d))
327
+ * rectify a mistake where wrong lines were chosen during rebase ([b94b0d0](https://github.com/anthropics/anthropic-sdk-ruby/commit/b94b0d07ee177cc95afb98093f9d3fcc12f3c0b3))
328
+ * remove unnecessary indirection for some ArrayOf and HashOf types ([51ee769](https://github.com/anthropics/anthropic-sdk-ruby/commit/51ee76983abf2bac28fb139f5c1638909f23e92f))
329
+ * resolve tapioca derived sorbet errors ([#4](https://github.com/anthropics/anthropic-sdk-ruby/issues/4)) ([3b99fb9](https://github.com/anthropics/anthropic-sdk-ruby/commit/3b99fb9921a61c98b215d407be2033be9e783c4c))
330
+ * restore accidently removed optional dependencies ([f749376](https://github.com/anthropics/anthropic-sdk-ruby/commit/f74937681f7c724974c74bc4aca503495dbef326))
331
+ * run bundle install before publishing ruby gems ([ff4c067](https://github.com/anthropics/anthropic-sdk-ruby/commit/ff4c0674a5ef8d6658b015e52b4a02edf3e1004b))
332
+ * sorbet request method signatures should support default values ([004072a](https://github.com/anthropics/anthropic-sdk-ruby/commit/004072a79bc916503885e919f0c196393c6989c6))
333
+ * ssl timeout not required when TCP socket open timeout specified ([a032e01](https://github.com/anthropics/anthropic-sdk-ruby/commit/a032e015c2cca5283aa33a98bda34950c8ccc7d2))
334
+ * switch to github compatible markdown engine ([#29](https://github.com/anthropics/anthropic-sdk-ruby/issues/29)) ([009c43d](https://github.com/anthropics/anthropic-sdk-ruby/commit/009c43d8c47b18c56193d24354b041bbcf736dbe))
335
+ * temporarily run CI without bundler cache ([82f8fe0](https://github.com/anthropics/anthropic-sdk-ruby/commit/82f8fe0a4b73bfb54b23db179da9353f8daa137f))
336
+ * **type signature:** remove extraneous `params` from resource methods ([46f31db](https://github.com/anthropics/anthropic-sdk-ruby/commit/46f31db2d528096f6a4e2c95890c6dc1e364ea7c))
337
+ * **types:** add missing token-counting-2024-11-01 ([6fae646](https://github.com/anthropics/anthropic-sdk-ruby/commit/6fae6460a3e83a0683e3182cc90085eb39681a26))
338
+ * **types:** correct claude-3-5-haiku-20241022 name ([67ef9e8](https://github.com/anthropics/anthropic-sdk-ruby/commit/67ef9e81c38683180cfc570a41921b4e9390a911))
339
+ * **types:** remove anthropic-instant-1.2 model ([b09f15f](https://github.com/anthropics/anthropic-sdk-ruby/commit/b09f15f86879bc710a8fc37d484dbfd089cb6eb5))
340
+ * update outdated examples ([b3668b7](https://github.com/anthropics/anthropic-sdk-ruby/commit/b3668b7fcb3c80c17d21127154d05dc0569e8517))
341
+ * yard example tag formatting ([#7](https://github.com/anthropics/anthropic-sdk-ruby/issues/7)) ([13c0a7d](https://github.com/anthropics/anthropic-sdk-ruby/commit/13c0a7daa1b3fa8a6fe6780a55e991750e21c2ec))
342
+
343
+
344
+ ### Chores
345
+
346
+ * `BaseModel` fields that are `BaseModel` typed should also accept `Hash` ([#6](https://github.com/anthropics/anthropic-sdk-ruby/issues/6)) ([29bb24a](https://github.com/anthropics/anthropic-sdk-ruby/commit/29bb24a5a24e61dd3d2089e9389744922ef99506))
347
+ * accept `BaseClient` where `Client` were accepted ([ee8dc80](https://github.com/anthropics/anthropic-sdk-ruby/commit/ee8dc80005908f785510b33762436e9677300880))
348
+ * add `sorbet` section to README ([e86eeb4](https://github.com/anthropics/anthropic-sdk-ruby/commit/e86eeb48f752f09a66e2fb4dc6fe594790dc51cd))
349
+ * add hash of OpenAPI spec/config inputs to .stats.yml ([#17](https://github.com/anthropics/anthropic-sdk-ruby/issues/17)) ([a217e5a](https://github.com/anthropics/anthropic-sdk-ruby/commit/a217e5aaa1d33ed3f01f50bdf3d9ca37fbd34d47))
350
+ * add more examples to README.md ([a66b0be](https://github.com/anthropics/anthropic-sdk-ruby/commit/a66b0be1761825b1a3dcd3f870f20d4c2492e7d2))
351
+ * add more private yard doc annotations ([1fbbf09](https://github.com/anthropics/anthropic-sdk-ruby/commit/1fbbf098c85efa67c777ffd7e7ca70eaf1e3f5e3))
352
+ * add most doc strings to rbi type definitions ([4b4eb5d](https://github.com/anthropics/anthropic-sdk-ruby/commit/4b4eb5d79ccdb9ab6dec3f54949b797967537818))
353
+ * add stub methods for higher level stream helpers ([4d86623](https://github.com/anthropics/anthropic-sdk-ruby/commit/4d8662300256d9c995be88d9f41a2fdae364f0f3))
354
+ * add type annotations for enum and union member listing methods ([#8](https://github.com/anthropics/anthropic-sdk-ruby/issues/8)) ([e26a2b4](https://github.com/anthropics/anthropic-sdk-ruby/commit/e26a2b499a5bb7de4fa4ff5e2627179bd8e0bccd))
355
+ * add type annotations for requester ([4c4001d](https://github.com/anthropics/anthropic-sdk-ruby/commit/4c4001d5b0ba44469719f2823cc48d44a51a5df5))
356
+ * adjust method param class position in yard doc for convenience ([d4799c9](https://github.com/anthropics/anthropic-sdk-ruby/commit/d4799c923a6949b40fdb5f06ad59ad827b7682df))
357
+ * adjust whitespace in comments ([545f35f](https://github.com/anthropics/anthropic-sdk-ruby/commit/545f35f993bec8f63a7557fd13c78d2aee88c5ac))
358
+ * always fold up method bodies in sorbet type definitions ([#61](https://github.com/anthropics/anthropic-sdk-ruby/issues/61)) ([b77b1a7](https://github.com/anthropics/anthropic-sdk-ruby/commit/b77b1a73101e793309f496e4b53d28d017146da9))
359
+ * **api:** add title ([b82e233](https://github.com/anthropics/anthropic-sdk-ruby/commit/b82e2336c27fa8ee9984a83e51ed6a3da765ac31))
360
+ * **api:** update openapi spec url ([2fab4c1](https://github.com/anthropics/anthropic-sdk-ruby/commit/2fab4c1d7768b2057f306fde3399638b23ab6544))
361
+ * **api:** update spec version ([90e3e26](https://github.com/anthropics/anthropic-sdk-ruby/commit/90e3e26ee15715739f04feb98f92d1cf748a4801))
362
+ * **api:** update spec version ([a7f4b77](https://github.com/anthropics/anthropic-sdk-ruby/commit/a7f4b7763091c10ce3fdf243309aa75069e5aedb))
363
+ * attempt to clean up underlying transport when streams are GC'd ([#66](https://github.com/anthropics/anthropic-sdk-ruby/issues/66)) ([f562b62](https://github.com/anthropics/anthropic-sdk-ruby/commit/f562b6240c6d775cc054e6668830fd0d0aa1fa3a))
364
+ * be consistent and use lower case headers everywhere ([359050a](https://github.com/anthropics/anthropic-sdk-ruby/commit/359050a4a639c15c9d549924a500b60e7f5826b1))
365
+ * bump lockfile ([44d371d](https://github.com/anthropics/anthropic-sdk-ruby/commit/44d371dd9ad95d8620c0f0e1d09bafff123e12c6))
366
+ * bump lockfile ([c7b4556](https://github.com/anthropics/anthropic-sdk-ruby/commit/c7b455617080dcbf1c000efc1fba3df43ff614bb))
367
+ * bump sorbet ([796e654](https://github.com/anthropics/anthropic-sdk-ruby/commit/796e65499903e1ba89e11b813157e7d7f977cf2e))
368
+ * clamp timeout to range of positive floats ([042cdbb](https://github.com/anthropics/anthropic-sdk-ruby/commit/042cdbb6f577e4c59dbefc59e8218b5ce113bdc9))
369
+ * clean up client tests ([ca6fefb](https://github.com/anthropics/anthropic-sdk-ruby/commit/ca6fefbd2afb24362d15a8948ab69d7b3bb6e9ff))
370
+ * **client:** ensure streaming methods are suffixed with `_streaming` ([#43](https://github.com/anthropics/anthropic-sdk-ruby/issues/43)) ([875abed](https://github.com/anthropics/anthropic-sdk-ruby/commit/875abed8a8e7d356a6218fa1086df55e94e8f2e8))
371
+ * **client:** extract out client agnostic code into utils ([9c6e7e6](https://github.com/anthropics/anthropic-sdk-ruby/commit/9c6e7e615fbba8676ed2d89ac4c5ddb1fae36efd))
372
+ * **client:** refactor to use RFC3986_PARSER for URL handling ([702735e](https://github.com/anthropics/anthropic-sdk-ruby/commit/702735e13fffe8ce79fa2fcd5214c6212f2c4ffb))
373
+ * consolidate imports ([1acdd2b](https://github.com/anthropics/anthropic-sdk-ruby/commit/1acdd2b1d6e3b51c169f17ce102d3f1718c93822))
374
+ * demonstrate how to make undocumented requests in README ([#47](https://github.com/anthropics/anthropic-sdk-ruby/issues/47)) ([48bb3df](https://github.com/anthropics/anthropic-sdk-ruby/commit/48bb3df6d82f6bee69c298af39d5eb710907cdde))
375
+ * disable dangerous rubocop auto correct rule ([#15](https://github.com/anthropics/anthropic-sdk-ruby/issues/15)) ([4e2c7b1](https://github.com/anthropics/anthropic-sdk-ruby/commit/4e2c7b11b48827c2dddbeed3e2119ab1391e7d22))
376
+ * do not git ignore `bin/` ([c4c8a4b](https://github.com/anthropics/anthropic-sdk-ruby/commit/c4c8a4bcd6e00c98066ab07c6300f84cf5d979df))
377
+ * do not label modules as abstract ([a662c5a](https://github.com/anthropics/anthropic-sdk-ruby/commit/a662c5a2bd2a0bc546d76d9710fdbef4c324474c))
378
+ * do not use literals for version in type definitions ([#50](https://github.com/anthropics/anthropic-sdk-ruby/issues/50)) ([5248f18](https://github.com/anthropics/anthropic-sdk-ruby/commit/5248f1865a098790f8553618e008f04fa779d8d8))
379
+ * **docs:** updates ([215c716](https://github.com/anthropics/anthropic-sdk-ruby/commit/215c716c41714aad1649c3e8c074ae8cedda053a))
380
+ * document LSP support in read me ([#53](https://github.com/anthropics/anthropic-sdk-ruby/issues/53)) ([c1141ae](https://github.com/anthropics/anthropic-sdk-ruby/commit/c1141ae7ad75a26b56f0193302209452b18a5ff6))
381
+ * document union variants in yard doc ([6d46142](https://github.com/anthropics/anthropic-sdk-ruby/commit/6d4614204d5bfe5c2bbe6b5079c1afc35c50db9c))
382
+ * easier to read examples in README.md ([#64](https://github.com/anthropics/anthropic-sdk-ruby/issues/64)) ([d33a5d4](https://github.com/anthropics/anthropic-sdk-ruby/commit/d33a5d4f8aa6491778617b243f699d641db0098d))
383
+ * enable full pagination tests ([0461ff1](https://github.com/anthropics/anthropic-sdk-ruby/commit/0461ff1c622d4a749e697ce86867237bc3a8de02))
384
+ * ensure doc strings for rbi method arguments ([7e1c01e](https://github.com/anthropics/anthropic-sdk-ruby/commit/7e1c01ede9b18b0cfe18e6f42722b23c8246538a))
385
+ * error fields are now mutable in keeping with rest of SDK ([7e05b0a](https://github.com/anthropics/anthropic-sdk-ruby/commit/7e05b0aa0c09927260e59338f3fd47133518ef63))
386
+ * extract error classes into own module ([#41](https://github.com/anthropics/anthropic-sdk-ruby/issues/41)) ([bd071ab](https://github.com/anthropics/anthropic-sdk-ruby/commit/bd071ab57962aba3ecc3eb73459c7d04d218c687))
387
+ * fix a yard doc comment ([9ba259f](https://github.com/anthropics/anthropic-sdk-ruby/commit/9ba259f38d13765edc44f2a502022a96b5100aa2))
388
+ * fix misc rubocop errors ([#30](https://github.com/anthropics/anthropic-sdk-ruby/issues/30)) ([da01798](https://github.com/anthropics/anthropic-sdk-ruby/commit/da01798506fd1c8873d5331fc149c5c31125b755))
389
+ * formatting change for `*.rbi` files ([465bf0b](https://github.com/anthropics/anthropic-sdk-ruby/commit/465bf0b65bfd05d01b01f3bbaf45070ae80c12cc))
390
+ * formatting consistency update ([e1845c3](https://github.com/anthropics/anthropic-sdk-ruby/commit/e1845c338d966ab5cd9254b9ab1988875a3d96bb))
391
+ * fully qualify `Array` and `Hash` in rbs files to avoid collisions ([ed20454](https://github.com/anthropics/anthropic-sdk-ruby/commit/ed204542c7414452d58c6e88e0422351f80cbd2b))
392
+ * fully qualify class name for inheritance ([780ccfe](https://github.com/anthropics/anthropic-sdk-ruby/commit/780ccfecae00c632bb678726ce9fe5a3b97f3d01))
393
+ * fused enum should use faster internal iteration by default ([9b8f6b6](https://github.com/anthropics/anthropic-sdk-ruby/commit/9b8f6b6f924dd351d0b69bad380036cbb6d9084e))
394
+ * generate better supported rbi signatures ([b3d1d0f](https://github.com/anthropics/anthropic-sdk-ruby/commit/b3d1d0f2a492ce820bb24f2a923be2dc5969ddf2))
395
+ * generate params class initializers ([b6ade22](https://github.com/anthropics/anthropic-sdk-ruby/commit/b6ade22118bffcf1b51f098ffe6410daa02ff83f))
396
+ * generate yard docs on page classes ([633147d](https://github.com/anthropics/anthropic-sdk-ruby/commit/633147d2f482e15bc16f61ef77c9fd9249d23b31))
397
+ * improve doc comment readability ([7926d77](https://github.com/anthropics/anthropic-sdk-ruby/commit/7926d77e8205b8cb81f3115eb330634a0723f83f))
398
+ * improve doc comment readability ([c390289](https://github.com/anthropics/anthropic-sdk-ruby/commit/c390289347c64d51b9f8abcd0dace801b1d63bf2))
399
+ * improve documentation ([999b642](https://github.com/anthropics/anthropic-sdk-ruby/commit/999b642a7a086e652ee50783ee46fd10ec7bbd0a))
400
+ * improve rbi typedef for page classes ([c15f0f9](https://github.com/anthropics/anthropic-sdk-ruby/commit/c15f0f9c3bf1aa5af6d055ba8aa1acbeb0a2fb50))
401
+ * improve uri interpolation internals ([dc68ceb](https://github.com/anthropics/anthropic-sdk-ruby/commit/dc68cebaee5b7c4bbc02214559c96b563bfccfa2))
402
+ * improve yard doc folding and reduce repetition ([fc89d13](https://github.com/anthropics/anthropic-sdk-ruby/commit/fc89d13a94cd9940482a905c620fb87424fc34dd))
403
+ * improve yard docs readability ([#35](https://github.com/anthropics/anthropic-sdk-ruby/issues/35)) ([9f938ae](https://github.com/anthropics/anthropic-sdk-ruby/commit/9f938aee6c682f4d6f5d22a0541b2d0fda03870a))
404
+ * **internal:** add back release workflow ([f96d786](https://github.com/anthropics/anthropic-sdk-ruby/commit/f96d7866a0ca6b1978450f6d6800d8ab050e7ffc))
405
+ * **internal:** add utils methods for parsing SSE ([4384987](https://github.com/anthropics/anthropic-sdk-ruby/commit/4384987f369ce97881433630ba79759f616a223f))
406
+ * **internal:** bump dependencies ([b8d2f75](https://github.com/anthropics/anthropic-sdk-ruby/commit/b8d2f75ae9d4830633e58c4fa71045f743e8ca66))
407
+ * **internal:** bump dependencies ([992a146](https://github.com/anthropics/anthropic-sdk-ruby/commit/992a146f76e9f3b304aebddd7650348c03eb69ce))
408
+ * **internal:** bump dependencies ([fd5d65f](https://github.com/anthropics/anthropic-sdk-ruby/commit/fd5d65f8ba819b5d60af587b702df616d11befee))
409
+ * **internal:** formatting ([a44a2cf](https://github.com/anthropics/anthropic-sdk-ruby/commit/a44a2cfaae3d4ded594560d8f745b086e52fd0ae))
410
+ * **internal:** group related utils together ([cf14545](https://github.com/anthropics/anthropic-sdk-ruby/commit/cf145453ec75dc7ce7158173540e4a584f66277a))
411
+ * **internal:** improve sdk internal docs / types ([8e10e1e](https://github.com/anthropics/anthropic-sdk-ruby/commit/8e10e1e53cca77f8467e7fda059c61bba7c21a18))
412
+ * **internal:** minor refactoring of utils ([#23](https://github.com/anthropics/anthropic-sdk-ruby/issues/23)) ([ebb85fe](https://github.com/anthropics/anthropic-sdk-ruby/commit/ebb85fe8b8764c09be4c24325ebfafc8050dffc8))
413
+ * **internal:** misc small improvements ([#58](https://github.com/anthropics/anthropic-sdk-ruby/issues/58)) ([f888187](https://github.com/anthropics/anthropic-sdk-ruby/commit/f888187862639e9869e9333668c95446e1550663))
414
+ * **internal:** more concise handling of parameter naming conflicts ([#63](https://github.com/anthropics/anthropic-sdk-ruby/issues/63)) ([4a573cd](https://github.com/anthropics/anthropic-sdk-ruby/commit/4a573cd6c5926ac4e92ab8aa48a2ad3d09ba06bb))
415
+ * **internal:** prune unused `extern` references ([6ba7331](https://github.com/anthropics/anthropic-sdk-ruby/commit/6ba73310ec87d18cfdb8a64ebdb7cafe57beba10))
416
+ * **internal:** refactor request stack ([af9c6fa](https://github.com/anthropics/anthropic-sdk-ruby/commit/af9c6fa698e10e249f286dd9d166a7d28c407446))
417
+ * **internal:** remove CI condition ([#22](https://github.com/anthropics/anthropic-sdk-ruby/issues/22)) ([b89b4e3](https://github.com/anthropics/anthropic-sdk-ruby/commit/b89b4e3d6cd7b402affe0c0ed545be95675422fd))
418
+ * **internal:** remove extra empty newlines ([2b8f3f9](https://github.com/anthropics/anthropic-sdk-ruby/commit/2b8f3f94b3b3b30a5dbd7064a91b67c650bb2d5a))
419
+ * **internal:** reorder model constants ([aee0601](https://github.com/anthropics/anthropic-sdk-ruby/commit/aee0601a7410743d0424cf33da6804e7cf0b036d))
420
+ * **internal:** rubocop rules ([#60](https://github.com/anthropics/anthropic-sdk-ruby/issues/60)) ([032f3e7](https://github.com/anthropics/anthropic-sdk-ruby/commit/032f3e7442fca2d6ca4301220c02e28023e2341a))
421
+ * **internal:** run rubocop linter in parallel ([#59](https://github.com/anthropics/anthropic-sdk-ruby/issues/59)) ([70c29d1](https://github.com/anthropics/anthropic-sdk-ruby/commit/70c29d1f6c9eb08357a4d37dec89bb80165013ad))
422
+ * **internal:** update config ([#21](https://github.com/anthropics/anthropic-sdk-ruby/issues/21)) ([6407fd1](https://github.com/anthropics/anthropic-sdk-ruby/commit/6407fd1a961209c62fb676942d64ccfc1e87f06f))
423
+ * **internal:** update dependencies ([e7d6f17](https://github.com/anthropics/anthropic-sdk-ruby/commit/e7d6f17c083f0e73f59e24b7dc8d5a7254cab574))
424
+ * **internal:** update dependencies ([5372f72](https://github.com/anthropics/anthropic-sdk-ruby/commit/5372f721c6324b9fc6760d13c9bd17249beaac3d))
425
+ * **internal:** update lock file ([35393a0](https://github.com/anthropics/anthropic-sdk-ruby/commit/35393a0e9e31b1f027874cbad0931c5dee797f7d))
426
+ * **internal:** update lock file ([7f320b2](https://github.com/anthropics/anthropic-sdk-ruby/commit/7f320b23bea26d3d17ca20bcebb4456ef6b51dde))
427
+ * **internal:** update lock file ([b86e9ec](https://github.com/anthropics/anthropic-sdk-ruby/commit/b86e9ec19cdd6bb82dfcbe193ad5f48f1b585dae))
428
+ * **internal:** update spec ([b44172f](https://github.com/anthropics/anthropic-sdk-ruby/commit/b44172f02a80c9a5bcef1beb27e0daa303b25b44))
429
+ * **internal:** update spec ([31530cc](https://github.com/anthropics/anthropic-sdk-ruby/commit/31530cc7bc3be027f87f8c2867e37fdb8dfed5a7))
430
+ * **internal:** update spec URL ([96a52f8](https://github.com/anthropics/anthropic-sdk-ruby/commit/96a52f8230c608738e9cc4af2e1872440c4569a8))
431
+ * **internal:** update spec version ([b37e786](https://github.com/anthropics/anthropic-sdk-ruby/commit/b37e786e38172700a40b316b0e9e6d541d39377d))
432
+ * link to param model in method yard docs ([99f6930](https://github.com/anthropics/anthropic-sdk-ruby/commit/99f693069981d3131f8a266f39525adb571a057b))
433
+ * make client tests look prettier ([#65](https://github.com/anthropics/anthropic-sdk-ruby/issues/65)) ([7550298](https://github.com/anthropics/anthropic-sdk-ruby/commit/7550298d31b7b7d95835f598ab64f5cc28487890))
434
+ * make MFA optional depending on token ([0705343](https://github.com/anthropics/anthropic-sdk-ruby/commit/070534338ab367dc42ed682384ca12431456db08))
435
+ * mark non-inheritable SDK internal classes as final ([2f466f1](https://github.com/anthropics/anthropic-sdk-ruby/commit/2f466f1aa87dec750618e130151db0937c1c7433))
436
+ * migrate to pattern matching for testing ([e1eb80f](https://github.com/anthropics/anthropic-sdk-ruby/commit/e1eb80f90a0053d60da08d12c268147382aaa3d7))
437
+ * minor formatting changes ([8ee908a](https://github.com/anthropics/anthropic-sdk-ruby/commit/8ee908ac1bf58d19a96dfd817a93216b994d9494))
438
+ * minor improvements to param type yard doc ([d3ec6af](https://github.com/anthropics/anthropic-sdk-ruby/commit/d3ec6af0fb1d858193c256f34257fb08f09a405f))
439
+ * minor refactorings on base client ([4aa03f1](https://github.com/anthropics/anthropic-sdk-ruby/commit/4aa03f1c69e387f5adeb5d63b13c356c2bbeaf89))
440
+ * minor scripting improvements ([9fa1667](https://github.com/anthropics/anthropic-sdk-ruby/commit/9fa1667b6fef8f5d9bb454e9fa7c2071dde91cdc))
441
+ * misc code formatting changes ([f480392](https://github.com/anthropics/anthropic-sdk-ruby/commit/f4803921ccfb95db91613dc5ee05f34ab01e7b50))
442
+ * misc sdk polish ([#52](https://github.com/anthropics/anthropic-sdk-ruby/issues/52)) ([559e927](https://github.com/anthropics/anthropic-sdk-ruby/commit/559e927e9396343681d2c88630ebb533b3c0f70f))
443
+ * modify sorbet initializers to better support auto-completion ([06657ca](https://github.com/anthropics/anthropic-sdk-ruby/commit/06657ca0879eb5d9f53803a572a6820cff3bee6b))
444
+ * more accurate generic params for stream classes ([00638c2](https://github.com/anthropics/anthropic-sdk-ruby/commit/00638c22862256b1ca328e9a00a7ef67a4ad9762))
445
+ * more accurate type annotations for SDK internals ([#27](https://github.com/anthropics/anthropic-sdk-ruby/issues/27)) ([894f4d6](https://github.com/anthropics/anthropic-sdk-ruby/commit/894f4d6f90cd4d5a0e1f710d1af3c0c59bbc044e))
446
+ * more aggressive tapioca detection logic for skipping compiler introspection ([#19](https://github.com/anthropics/anthropic-sdk-ruby/issues/19)) ([eeb1f1b](https://github.com/anthropics/anthropic-sdk-ruby/commit/eeb1f1b912be1b8d06f160524685342300dfa9b0))
447
+ * more detailed yard docs for base client ([572b2c7](https://github.com/anthropics/anthropic-sdk-ruby/commit/572b2c7b8befe771cb63e6997e59add22b4612a8))
448
+ * more detailed yard docs for sdk utils ([75435e2](https://github.com/anthropics/anthropic-sdk-ruby/commit/75435e24a394f0b72b9324c9ac88d9f375860145))
449
+ * more explicit privacy annotations ([5dd26ad](https://github.com/anthropics/anthropic-sdk-ruby/commit/5dd26ad3129594ee6955106198793dcba56bca87))
450
+ * more readable output when tests fail ([#16](https://github.com/anthropics/anthropic-sdk-ruby/issues/16)) ([83aa368](https://github.com/anthropics/anthropic-sdk-ruby/commit/83aa36887352f46ea611acc3942ebb9655702b22))
451
+ * move basemodel examples into tests ([0cf72d1](https://github.com/anthropics/anthropic-sdk-ruby/commit/0cf72d161afd1cd6e6716f1342931adc0d3fa7e1))
452
+ * move examples into tests ([9658760](https://github.com/anthropics/anthropic-sdk-ruby/commit/9658760f3370f6920074906adf5845e6801a345c))
453
+ * move private classes into internal module ([#42](https://github.com/anthropics/anthropic-sdk-ruby/issues/42)) ([6627f51](https://github.com/anthropics/anthropic-sdk-ruby/commit/6627f51aab8f7289e51c99e43fdbb4b9b614f489))
454
+ * order client variables by "importance" ([#38](https://github.com/anthropics/anthropic-sdk-ruby/issues/38)) ([2fc8233](https://github.com/anthropics/anthropic-sdk-ruby/commit/2fc8233bd34737ad45bb7729efbaead33e2660fd))
455
+ * re-arrange request-options method definitions ([43da888](https://github.com/anthropics/anthropic-sdk-ruby/commit/43da888b43719fc9477876ea61936d1ac9c8cd62))
456
+ * re-order assignment lines to make unions easier to read ([#20](https://github.com/anthropics/anthropic-sdk-ruby/issues/20)) ([fa776d0](https://github.com/anthropics/anthropic-sdk-ruby/commit/fa776d0a85cd23a6a02593d2f71a8c9861609f0e))
457
+ * re-order init params in accordance with their optionality ([e6d54b5](https://github.com/anthropics/anthropic-sdk-ruby/commit/e6d54b5d6afba0035f422e5f5313fc90b3908bf5))
458
+ * re-order resource classes constructor position ([1dfecdf](https://github.com/anthropics/anthropic-sdk-ruby/commit/1dfecdfd96eb85b449b8abb5281293816754f8be))
459
+ * recursively accept `AnyHash` for `BaseModel`s in arrays and hashes ([#11](https://github.com/anthropics/anthropic-sdk-ruby/issues/11)) ([9794ce4](https://github.com/anthropics/anthropic-sdk-ruby/commit/9794ce4cef30beae0c7ae09a19fd3e5fcc0cdf4a))
460
+ * reduce test verbosity ([f55e130](https://github.com/anthropics/anthropic-sdk-ruby/commit/f55e1309589874988b5afd6f3bacfe5facdbd030))
461
+ * reduce verbosity in type declarations ([#14](https://github.com/anthropics/anthropic-sdk-ruby/issues/14)) ([f92b511](https://github.com/anthropics/anthropic-sdk-ruby/commit/f92b5119be9c95ff26f7b278dc4cacbfa223294f))
462
+ * refactor base client internals ([d44a188](https://github.com/anthropics/anthropic-sdk-ruby/commit/d44a188adf96d994c997db9ffa25b005d0e3f34c))
463
+ * refactor base client methods ([c220090](https://github.com/anthropics/anthropic-sdk-ruby/commit/c220090382da588ca376642945b067142a7c86e6))
464
+ * refactor base client methods ([b0fde06](https://github.com/anthropics/anthropic-sdk-ruby/commit/b0fde06c0c7f287e9c0b6a8dfd1dcbe5538071dd))
465
+ * refactor BasePage to have initializer ([0f72312](https://github.com/anthropics/anthropic-sdk-ruby/commit/0f723122b85858f3665b098f4a8ed0547366e4fa))
466
+ * refactor util method signatures ([aec6d2b](https://github.com/anthropics/anthropic-sdk-ruby/commit/aec6d2b18c9bff2e7bc72799a5787ee547c01683))
467
+ * **refactor:** improve requester internals ([5e026ed](https://github.com/anthropics/anthropic-sdk-ruby/commit/5e026ede2b6fd6430a2068b631dfd0251681d5c5))
468
+ * relax sorbet enum parameters to allow `String` in addition to `Symbol` ([#37](https://github.com/anthropics/anthropic-sdk-ruby/issues/37)) ([4084602](https://github.com/anthropics/anthropic-sdk-ruby/commit/4084602f8cd7436ea696fbdb3994a1068159063a))
469
+ * relocate internal modules ([#26](https://github.com/anthropics/anthropic-sdk-ruby/issues/26)) ([eeedd82](https://github.com/anthropics/anthropic-sdk-ruby/commit/eeedd82e860a067dc6ce0ddabac5ed20f337cf3d))
470
+ * remove stale thread local checks ([2cdb176](https://github.com/anthropics/anthropic-sdk-ruby/commit/2cdb176ba5d685cf92246d80c615dd182bd94d69))
471
+ * remove unnecessary & confusing module ([#25](https://github.com/anthropics/anthropic-sdk-ruby/issues/25)) ([1743ccc](https://github.com/anthropics/anthropic-sdk-ruby/commit/1743cccb7f80d75bd3034d32e6f9bb501096c81b))
472
+ * rename confusing `Type::BooleanModel` to `Type::Boolean` ([#56](https://github.com/anthropics/anthropic-sdk-ruby/issues/56)) ([2fe7368](https://github.com/anthropics/anthropic-sdk-ruby/commit/2fe7368a11d74f9e141510df8a2c1931a5e6915c))
473
+ * rename internal type aliases ([8b319e3](https://github.com/anthropics/anthropic-sdk-ruby/commit/8b319e3b4934812507f2c0a99ff22001e121d589))
474
+ * rename internal variable ([25c089f](https://github.com/anthropics/anthropic-sdk-ruby/commit/25c089fe52e898b0c6430c1688701d3c57604528))
475
+ * rename misleading variable ([e5e2b07](https://github.com/anthropics/anthropic-sdk-ruby/commit/e5e2b07c58209a985b8de233bc51915cf8596b20))
476
+ * reorganize import ordering ([47f8d21](https://github.com/anthropics/anthropic-sdk-ruby/commit/47f8d21eb21042199fb9edce52ba9d3c263699d9))
477
+ * reorganize request construction hash to mirror HTTP semantics ([255af2c](https://github.com/anthropics/anthropic-sdk-ruby/commit/255af2c3848579ea85f8bd72d0917c283853906c))
478
+ * sdk client internal refactoring ([e19893f](https://github.com/anthropics/anthropic-sdk-ruby/commit/e19893fe66ce157e998639933480a481e0078451))
479
+ * sdk internal updates ([5dbeb61](https://github.com/anthropics/anthropic-sdk-ruby/commit/5dbeb6159c03f4a2bbf1c339bb1b68d8cf1d1eb5))
480
+ * simplify internal utils ([#51](https://github.com/anthropics/anthropic-sdk-ruby/issues/51)) ([42e6f89](https://github.com/anthropics/anthropic-sdk-ruby/commit/42e6f891ff2a40877ebb8e6711f66eb02081285e))
481
+ * slightly more consistent type definition layout ([11e35e7](https://github.com/anthropics/anthropic-sdk-ruby/commit/11e35e752fe555f6e9332a906ddb8922d4ca41c0))
482
+ * slightly more robust utils ([77f7f35](https://github.com/anthropics/anthropic-sdk-ruby/commit/77f7f35786f2f0b61e088649cba29bf5140eab39))
483
+ * slightly more robust utils ([a456b92](https://github.com/anthropics/anthropic-sdk-ruby/commit/a456b92fda2a3e0abb1d0055decd007d4c78e074))
484
+ * sort imports via topological dependency & file path ([647f324](https://github.com/anthropics/anthropic-sdk-ruby/commit/647f3248ba989abfbebd6380741e51ef40225f15))
485
+ * styling improvements in doc strings ([2c01db4](https://github.com/anthropics/anthropic-sdk-ruby/commit/2c01db4a8c6f83b44d7564ab716dd9e727520514))
486
+ * support (deprecated) ruby 3.0 as well ([31885ce](https://github.com/anthropics/anthropic-sdk-ruby/commit/31885ceb0c8c079ffbe80231ac52c878b05c900b))
487
+ * support different EOLs in streaming ([20173b9](https://github.com/anthropics/anthropic-sdk-ruby/commit/20173b93ba996f9f2e81dc78c51836f0470d8607))
488
+ * switch over to relative requires for gem locals ([064113e](https://github.com/anthropics/anthropic-sdk-ruby/commit/064113e6bebfd523cb3a51e89c1faa113c804453))
489
+ * switch to prettier looking sorbet annotations ([#12](https://github.com/anthropics/anthropic-sdk-ruby/issues/12)) ([3a98172](https://github.com/anthropics/anthropic-sdk-ruby/commit/3a98172528f03b4d0dd66f61c06ed96047413522))
490
+ * **tests:** limit array example length ([df006e2](https://github.com/anthropics/anthropic-sdk-ruby/commit/df006e2cba144280b8c402f7d27b3e3314559c67))
491
+ * **tests:** support overriding base url with an env var ([6c0135b](https://github.com/anthropics/anthropic-sdk-ruby/commit/6c0135b87c12b3eb83060688e218fe32f7c613dd))
492
+ * **tests:** support overriding base url with an env var ([4c88087](https://github.com/anthropics/anthropic-sdk-ruby/commit/4c880871e1e87758b6298e5830513de5cd692a02))
493
+ * touch up sdk usage examples ([1bd00b5](https://github.com/anthropics/anthropic-sdk-ruby/commit/1bd00b51e17412c40e4091b5d8624d1e3de4a045))
494
+ * touch up yard docs with more spec compliant syntax ([dc157ab](https://github.com/anthropics/anthropic-sdk-ruby/commit/dc157ab4157fd29aea5b229a277b6d90766c3f08))
495
+ * **types:** add types for Model#initialize ([5a2123b](https://github.com/anthropics/anthropic-sdk-ruby/commit/5a2123b581711ed40c929534dce645279b55c6b2))
496
+ * unknown commit message ([796e654](https://github.com/anthropics/anthropic-sdk-ruby/commit/796e65499903e1ba89e11b813157e7d7f977cf2e))
497
+ * unknown commit message ([ed20454](https://github.com/anthropics/anthropic-sdk-ruby/commit/ed204542c7414452d58c6e88e0422351f80cbd2b))
498
+ * unknown commit message ([cc7ce7e](https://github.com/anthropics/anthropic-sdk-ruby/commit/cc7ce7ef3f3fca39a8766f8c8b141f73c8118aaa))
499
+ * unknown commit message ([c4c8a4b](https://github.com/anthropics/anthropic-sdk-ruby/commit/c4c8a4bcd6e00c98066ab07c6300f84cf5d979df))
500
+ * unknown commit message ([82f8fe0](https://github.com/anthropics/anthropic-sdk-ruby/commit/82f8fe0a4b73bfb54b23db179da9353f8daa137f))
501
+ * unknown commit message ([465bf0b](https://github.com/anthropics/anthropic-sdk-ruby/commit/465bf0b65bfd05d01b01f3bbaf45070ae80c12cc))
502
+ * unknown commit message ([7219236](https://github.com/anthropics/anthropic-sdk-ruby/commit/7219236159271fa797f92c91b3b563ae5eb204b5))
503
+ * unknown commit message ([b3668b7](https://github.com/anthropics/anthropic-sdk-ruby/commit/b3668b7fcb3c80c17d21127154d05dc0569e8517))
504
+ * unknown commit message ([31885ce](https://github.com/anthropics/anthropic-sdk-ruby/commit/31885ceb0c8c079ffbe80231ac52c878b05c900b))
505
+ * unknown commit message ([1514045](https://github.com/anthropics/anthropic-sdk-ruby/commit/15140450700479fb0aa738768cdcb4fbb41fc525))
506
+ * unknown commit message ([e7d6f17](https://github.com/anthropics/anthropic-sdk-ruby/commit/e7d6f17c083f0e73f59e24b7dc8d5a7254cab574))
507
+ * unknown commit message ([042cdbb](https://github.com/anthropics/anthropic-sdk-ruby/commit/042cdbb6f577e4c59dbefc59e8218b5ce113bdc9))
508
+ * unknown commit message ([8077201](https://github.com/anthropics/anthropic-sdk-ruby/commit/80772011e1b01b871bf1f35e21d83155ee917f76))
509
+ * unknown commit message ([5474b7c](https://github.com/anthropics/anthropic-sdk-ruby/commit/5474b7cd63526f19f83fa240bc800056d42a4360))
510
+ * unknown commit message ([7f320b2](https://github.com/anthropics/anthropic-sdk-ruby/commit/7f320b23bea26d3d17ca20bcebb4456ef6b51dde))
511
+ * unknown commit message ([46f31db](https://github.com/anthropics/anthropic-sdk-ruby/commit/46f31db2d528096f6a4e2c95890c6dc1e364ea7c))
512
+ * unknown commit message ([2fab4c1](https://github.com/anthropics/anthropic-sdk-ruby/commit/2fab4c1d7768b2057f306fde3399638b23ab6544))
513
+ * unknown commit message ([c189028](https://github.com/anthropics/anthropic-sdk-ruby/commit/c1890281149d1afae26917e4be142c87946012c8))
514
+ * unknown commit message ([5db7d5c](https://github.com/anthropics/anthropic-sdk-ruby/commit/5db7d5c21a6e7225f4c0fecdd7d624c360947823))
515
+ * unknown commit message ([3d137b9](https://github.com/anthropics/anthropic-sdk-ruby/commit/3d137b9241e491fdb2d260080db7364774652c72))
516
+ * unknown commit message ([8efbf84](https://github.com/anthropics/anthropic-sdk-ruby/commit/8efbf84e789cd434a3d6e32b4d4e629983b3c28b))
517
+ * unknown commit message ([aee0601](https://github.com/anthropics/anthropic-sdk-ruby/commit/aee0601a7410743d0424cf33da6804e7cf0b036d))
518
+ * unknown commit message ([b95df92](https://github.com/anthropics/anthropic-sdk-ruby/commit/b95df92d0fb45ae6f85c5d509c5bbc7da9eaffaf))
519
+ * unknown commit message ([1e748e8](https://github.com/anthropics/anthropic-sdk-ruby/commit/1e748e8e7804b644daec5b40eb5d98e0b4117b92))
520
+ * unknown commit message ([5c33a30](https://github.com/anthropics/anthropic-sdk-ruby/commit/5c33a3048ffb561f7f90a5be66373bd58586cd9e))
521
+ * unknown commit message ([aec6d2b](https://github.com/anthropics/anthropic-sdk-ruby/commit/aec6d2b18c9bff2e7bc72799a5787ee547c01683))
522
+ * unknown commit message ([9ba259f](https://github.com/anthropics/anthropic-sdk-ruby/commit/9ba259f38d13765edc44f2a502022a96b5100aa2))
523
+ * unknown commit message ([90fd7b0](https://github.com/anthropics/anthropic-sdk-ruby/commit/90fd7b001899800ffa717715ddcfaa3e3dcc7fc4))
524
+ * unknown commit message ([b68ff43](https://github.com/anthropics/anthropic-sdk-ruby/commit/b68ff43484498d3715daa46da014a24f3a506442))
525
+ * unknown commit message ([215c716](https://github.com/anthropics/anthropic-sdk-ruby/commit/215c716c41714aad1649c3e8c074ae8cedda053a))
526
+ * unknown commit message ([7fc3326](https://github.com/anthropics/anthropic-sdk-ruby/commit/7fc33265423046e2eb66c2623f84d788cf01068e))
527
+ * unknown commit message ([fc89d13](https://github.com/anthropics/anthropic-sdk-ruby/commit/fc89d13a94cd9940482a905c620fb87424fc34dd))
528
+ * unknown commit message ([f5c2dc1](https://github.com/anthropics/anthropic-sdk-ruby/commit/f5c2dc1d21dc3e3696c14774a5b177f75c5d2f12))
529
+ * unknown commit message ([84aee14](https://github.com/anthropics/anthropic-sdk-ruby/commit/84aee14d4da446e19a937757b3090b6508284a00))
530
+ * unknown commit message ([572b2c7](https://github.com/anthropics/anthropic-sdk-ruby/commit/572b2c7b8befe771cb63e6997e59add22b4612a8))
531
+ * unknown commit message ([75435e2](https://github.com/anthropics/anthropic-sdk-ruby/commit/75435e24a394f0b72b9324c9ac88d9f375860145))
532
+ * unknown commit message ([8ee908a](https://github.com/anthropics/anthropic-sdk-ruby/commit/8ee908ac1bf58d19a96dfd817a93216b994d9494))
533
+ * unknown commit message ([8a7bf3e](https://github.com/anthropics/anthropic-sdk-ruby/commit/8a7bf3e18085a4b3345ea2aac3bb210f9e8656c6))
534
+ * unknown commit message ([e6d54b5](https://github.com/anthropics/anthropic-sdk-ruby/commit/e6d54b5d6afba0035f422e5f5313fc90b3908bf5))
535
+ * unknown commit message ([dc157ab](https://github.com/anthropics/anthropic-sdk-ruby/commit/dc157ab4157fd29aea5b229a277b6d90766c3f08))
536
+ * unknown commit message ([1dfecdf](https://github.com/anthropics/anthropic-sdk-ruby/commit/1dfecdfd96eb85b449b8abb5281293816754f8be))
537
+ * unknown commit message ([0291b49](https://github.com/anthropics/anthropic-sdk-ruby/commit/0291b49a288d313b85c2c21c157f42c1b42701a5))
538
+ * unknown commit message ([dc68ceb](https://github.com/anthropics/anthropic-sdk-ruby/commit/dc68cebaee5b7c4bbc02214559c96b563bfccfa2))
539
+ * unknown commit message ([ae072d7](https://github.com/anthropics/anthropic-sdk-ruby/commit/ae072d7ea84e706b7526b3f22fac55eb6e31ac2d))
540
+ * unknown commit message ([815f6f1](https://github.com/anthropics/anthropic-sdk-ruby/commit/815f6f11698e10950dc2115b1de288dc3d4a8f65))
541
+ * unknown commit message ([51ee769](https://github.com/anthropics/anthropic-sdk-ruby/commit/51ee76983abf2bac28fb139f5c1638909f23e92f))
542
+ * unknown commit message ([ee8dc80](https://github.com/anthropics/anthropic-sdk-ruby/commit/ee8dc80005908f785510b33762436e9677300880))
543
+ * unknown commit message ([2e32e31](https://github.com/anthropics/anthropic-sdk-ruby/commit/2e32e3181cfd76314185de62589499c8dbdcf8fa))
544
+ * unknown commit message ([e49c40b](https://github.com/anthropics/anthropic-sdk-ruby/commit/e49c40ba9a4db9226d179bc9ce419a017e27fe3f))
545
+ * unknown commit message ([8e10e1e](https://github.com/anthropics/anthropic-sdk-ruby/commit/8e10e1e53cca77f8467e7fda059c61bba7c21a18))
546
+ * unknown commit message ([9fa1667](https://github.com/anthropics/anthropic-sdk-ruby/commit/9fa1667b6fef8f5d9bb454e9fa7c2071dde91cdc))
547
+ * unknown commit message ([545f35f](https://github.com/anthropics/anthropic-sdk-ruby/commit/545f35f993bec8f63a7557fd13c78d2aee88c5ac))
548
+ * unknown commit message ([b2a17dc](https://github.com/anthropics/anthropic-sdk-ruby/commit/b2a17dc2e586ca85525bb05418664a5e4fc40bd2))
549
+ * unknown commit message ([3ac9239](https://github.com/anthropics/anthropic-sdk-ruby/commit/3ac92395e1de0f40d6ca30957a176f153b6d2daf))
550
+ * unknown commit message ([4758f2f](https://github.com/anthropics/anthropic-sdk-ruby/commit/4758f2f69bfbf8491b76f491bde6fa4f24a671e7))
551
+ * unknown commit message ([203ea8e](https://github.com/anthropics/anthropic-sdk-ruby/commit/203ea8ef2e94df101ed3f451c16e6dc969fe5e77))
552
+ * unknown commit message ([7079e3b](https://github.com/anthropics/anthropic-sdk-ruby/commit/7079e3b7ee61fc09f8a6880b3932dd4c6901d5d4))
553
+ * unknown commit message ([20323f4](https://github.com/anthropics/anthropic-sdk-ruby/commit/20323f4dcb37aa8686eccd8d4ab2350172c8c8bd))
554
+ * unknown commit message ([5626317](https://github.com/anthropics/anthropic-sdk-ruby/commit/56263177532d4bccc8229d051ea05ed1fe682e6c))
555
+ * unknown commit message ([1943720](https://github.com/anthropics/anthropic-sdk-ruby/commit/194372003c37f9a22975f4a0c780afbecdee4438))
556
+ * unknown commit message ([e1eb80f](https://github.com/anthropics/anthropic-sdk-ruby/commit/e1eb80f90a0053d60da08d12c268147382aaa3d7))
557
+ * unknown commit message ([8f1a061](https://github.com/anthropics/anthropic-sdk-ruby/commit/8f1a06136c031fb71d5d17d7943f2cb060513f42))
558
+ * unknown commit message ([6707fde](https://github.com/anthropics/anthropic-sdk-ruby/commit/6707fdea9040664f1010794aaf86b2b21bf6f414))
559
+ * unknown commit message ([bf74451](https://github.com/anthropics/anthropic-sdk-ruby/commit/bf74451cc475989c3338b2d8198650c78162e8d6))
560
+ * unknown commit message ([132f23a](https://github.com/anthropics/anthropic-sdk-ruby/commit/132f23a2c56155d618c20eca7accb4abf85e39a2))
561
+ * unknown commit message ([cf3d9cd](https://github.com/anthropics/anthropic-sdk-ruby/commit/cf3d9cd398495f253ce1421861ed5f37c97e36f0))
562
+ * unknown commit message ([b44172f](https://github.com/anthropics/anthropic-sdk-ruby/commit/b44172f02a80c9a5bcef1beb27e0daa303b25b44))
563
+ * unknown commit message ([83e9ed4](https://github.com/anthropics/anthropic-sdk-ruby/commit/83e9ed4201cdc3f0ead4f522bbcc6e54705d9557))
564
+ * unknown commit message ([90e3e26](https://github.com/anthropics/anthropic-sdk-ruby/commit/90e3e26ee15715739f04feb98f92d1cf748a4801))
565
+ * unknown commit message ([43da888](https://github.com/anthropics/anthropic-sdk-ruby/commit/43da888b43719fc9477876ea61936d1ac9c8cd62))
566
+ * unknown commit message ([5dd26ad](https://github.com/anthropics/anthropic-sdk-ruby/commit/5dd26ad3129594ee6955106198793dcba56bca87))
567
+ * unknown commit message ([b6ade22](https://github.com/anthropics/anthropic-sdk-ruby/commit/b6ade22118bffcf1b51f098ffe6410daa02ff83f))
568
+ * unknown commit message ([c390289](https://github.com/anthropics/anthropic-sdk-ruby/commit/c390289347c64d51b9f8abcd0dace801b1d63bf2))
569
+ * unknown commit message ([a456b92](https://github.com/anthropics/anthropic-sdk-ruby/commit/a456b92fda2a3e0abb1d0055decd007d4c78e074))
570
+ * unknown commit message ([99f6930](https://github.com/anthropics/anthropic-sdk-ruby/commit/99f693069981d3131f8a266f39525adb571a057b))
571
+ * unknown commit message ([2c01db4](https://github.com/anthropics/anthropic-sdk-ruby/commit/2c01db4a8c6f83b44d7564ab716dd9e727520514))
572
+ * unknown commit message ([ec36fe1](https://github.com/anthropics/anthropic-sdk-ruby/commit/ec36fe126bf160d285c0c4f0ccda134ff7e87fc1))
573
+ * unknown commit message ([9c6e7e6](https://github.com/anthropics/anthropic-sdk-ruby/commit/9c6e7e615fbba8676ed2d89ac4c5ddb1fae36efd))
574
+ * unknown commit message ([25c089f](https://github.com/anthropics/anthropic-sdk-ruby/commit/25c089fe52e898b0c6430c1688701d3c57604528))
575
+ * unknown commit message ([b63d653](https://github.com/anthropics/anthropic-sdk-ruby/commit/b63d6536fd5dd18d6383773e1b3453bfe15e0a23))
576
+ * unknown commit message ([bacbf53](https://github.com/anthropics/anthropic-sdk-ruby/commit/bacbf534fc9d91cb9ebd52211d8a0dfe2fafbae8))
577
+ * unknown commit message ([f55e130](https://github.com/anthropics/anthropic-sdk-ruby/commit/f55e1309589874988b5afd6f3bacfe5facdbd030))
578
+ * unknown commit message ([702735e](https://github.com/anthropics/anthropic-sdk-ruby/commit/702735e13fffe8ce79fa2fcd5214c6212f2c4ffb))
579
+ * unknown commit message ([236247b](https://github.com/anthropics/anthropic-sdk-ruby/commit/236247b370cfd126baa9399cfbb1b1b02b7a2af0))
580
+ * unknown commit message ([992a146](https://github.com/anthropics/anthropic-sdk-ruby/commit/992a146f76e9f3b304aebddd7650348c03eb69ce))
581
+ * unknown commit message ([fd5d65f](https://github.com/anthropics/anthropic-sdk-ruby/commit/fd5d65f8ba819b5d60af587b702df616d11befee))
582
+ * unknown commit message ([f480392](https://github.com/anthropics/anthropic-sdk-ruby/commit/f4803921ccfb95db91613dc5ee05f34ab01e7b50))
583
+ * unknown commit message ([a825225](https://github.com/anthropics/anthropic-sdk-ruby/commit/a825225707d55f91176b903c363b5e76a7f1e906))
584
+ * unknown commit message ([1e8f0d7](https://github.com/anthropics/anthropic-sdk-ruby/commit/1e8f0d72e00907060b9df8f5f490754ff2f42218))
585
+ * unknown commit message ([f5e32b6](https://github.com/anthropics/anthropic-sdk-ruby/commit/f5e32b6890b4b97d6ef555565d63fd8a233fc0b1))
586
+ * unknown commit message ([255af2c](https://github.com/anthropics/anthropic-sdk-ruby/commit/255af2c3848579ea85f8bd72d0917c283853906c))
587
+ * unknown commit message ([0f8f0d3](https://github.com/anthropics/anthropic-sdk-ruby/commit/0f8f0d3b22c9f3efed74e3a7fe2fb1adb877ba87))
588
+ * unknown commit message ([c815c7f](https://github.com/anthropics/anthropic-sdk-ruby/commit/c815c7f17c6bc7f8019791ce62bc54d221b64664))
589
+ * unknown commit message ([67f68dc](https://github.com/anthropics/anthropic-sdk-ruby/commit/67f68dc59e2e0f58061ce2afb4a320c0d65a7eba))
590
+ * unknown commit message ([7a4e479](https://github.com/anthropics/anthropic-sdk-ruby/commit/7a4e479d298bcc2243d159a8c23ffc2607944fbc))
591
+ * unknown commit message ([df006e2](https://github.com/anthropics/anthropic-sdk-ruby/commit/df006e2cba144280b8c402f7d27b3e3314559c67))
592
+ * unknown commit message ([a7f4b77](https://github.com/anthropics/anthropic-sdk-ruby/commit/a7f4b7763091c10ce3fdf243309aa75069e5aedb))
593
+ * unknown commit message ([7546811](https://github.com/anthropics/anthropic-sdk-ruby/commit/7546811d6d177d27f2ba09e28cbe44fa959c3eb8))
594
+ * unknown commit message ([7699572](https://github.com/anthropics/anthropic-sdk-ruby/commit/769957257171548b0a06d98d3ebfc419aa7a4fd1))
595
+ * unknown commit message ([b09f15f](https://github.com/anthropics/anthropic-sdk-ruby/commit/b09f15f86879bc710a8fc37d484dbfd089cb6eb5))
596
+ * unknown commit message ([fefdaf2](https://github.com/anthropics/anthropic-sdk-ruby/commit/fefdaf26152537af76bc4fc97fa471bf16948e3d))
597
+ * unknown commit message ([d44a188](https://github.com/anthropics/anthropic-sdk-ruby/commit/d44a188adf96d994c997db9ffa25b005d0e3f34c))
598
+ * unknown commit message ([c3e2c09](https://github.com/anthropics/anthropic-sdk-ruby/commit/c3e2c09d295b6ce365ec3a0311f86e5e2ba57f47))
599
+ * unknown commit message ([780ccfe](https://github.com/anthropics/anthropic-sdk-ruby/commit/780ccfecae00c632bb678726ce9fe5a3b97f3d01))
600
+ * unknown commit message ([633147d](https://github.com/anthropics/anthropic-sdk-ruby/commit/633147d2f482e15bc16f61ef77c9fd9249d23b31))
601
+ * unknown commit message ([69c38f7](https://github.com/anthropics/anthropic-sdk-ruby/commit/69c38f74e4af30eff3d9bfd77a657b1e8a02f88e))
602
+ * unknown commit message ([213172e](https://github.com/anthropics/anthropic-sdk-ruby/commit/213172e4cef378fc280fee3429b6e449b33efdb0))
603
+ * unknown commit message ([ff4c067](https://github.com/anthropics/anthropic-sdk-ruby/commit/ff4c0674a5ef8d6658b015e52b4a02edf3e1004b))
604
+ * unknown commit message ([b0fde06](https://github.com/anthropics/anthropic-sdk-ruby/commit/b0fde06c0c7f287e9c0b6a8dfd1dcbe5538071dd))
605
+ * unknown commit message ([6fae646](https://github.com/anthropics/anthropic-sdk-ruby/commit/6fae6460a3e83a0683e3182cc90085eb39681a26))
606
+ * unknown commit message ([979744f](https://github.com/anthropics/anthropic-sdk-ruby/commit/979744f4b520a341ea1508e44e5b33f9362d1029))
607
+ * unknown commit message ([4aa03f1](https://github.com/anthropics/anthropic-sdk-ruby/commit/4aa03f1c69e387f5adeb5d63b13c356c2bbeaf89))
608
+ * unknown commit message ([4e4523e](https://github.com/anthropics/anthropic-sdk-ruby/commit/4e4523ec5cbdb95704580a2d8b3d9b6b92164656))
609
+ * unknown commit message ([63e1284](https://github.com/anthropics/anthropic-sdk-ruby/commit/63e1284ece645a08e2d692440204d1ea118f2244))
610
+ * unknown commit message ([e3f3559](https://github.com/anthropics/anthropic-sdk-ruby/commit/e3f355964dafb934fbef49bf94bc0b7cd5e64423))
611
+ * unknown commit message ([b37e786](https://github.com/anthropics/anthropic-sdk-ruby/commit/b37e786e38172700a40b316b0e9e6d541d39377d))
612
+ * unknown commit message ([d3ec6af](https://github.com/anthropics/anthropic-sdk-ruby/commit/d3ec6af0fb1d858193c256f34257fb08f09a405f))
613
+ * unknown commit message ([1acdd2b](https://github.com/anthropics/anthropic-sdk-ruby/commit/1acdd2b1d6e3b51c169f17ce102d3f1718c93822))
614
+ * unknown commit message ([064113e](https://github.com/anthropics/anthropic-sdk-ruby/commit/064113e6bebfd523cb3a51e89c1faa113c804453))
615
+ * unknown commit message ([742f2a7](https://github.com/anthropics/anthropic-sdk-ruby/commit/742f2a78ee1b82457af4c7582033d87d9f38283f))
616
+ * unknown commit message ([31530cc](https://github.com/anthropics/anthropic-sdk-ruby/commit/31530cc7bc3be027f87f8c2867e37fdb8dfed5a7))
617
+ * unknown commit message ([b82e233](https://github.com/anthropics/anthropic-sdk-ruby/commit/b82e2336c27fa8ee9984a83e51ed6a3da765ac31))
618
+ * unknown commit message ([20b9526](https://github.com/anthropics/anthropic-sdk-ruby/commit/20b9526bb8503d9692753950650fefb455df8a92))
619
+ * unknown commit message ([7f4152d](https://github.com/anthropics/anthropic-sdk-ruby/commit/7f4152d13445a044bd4bb1c2301adc6be16cd61f))
620
+ * unknown commit message ([30e430a](https://github.com/anthropics/anthropic-sdk-ruby/commit/30e430a1891c263932a353cac9f4385a1f21e773))
621
+ * unknown commit message ([e1845c3](https://github.com/anthropics/anthropic-sdk-ruby/commit/e1845c338d966ab5cd9254b9ab1988875a3d96bb))
622
+ * unknown commit message ([037d377](https://github.com/anthropics/anthropic-sdk-ruby/commit/037d377178c216c7284b7a808a5bf6a683040450))
623
+ * unknown commit message ([5a2123b](https://github.com/anthropics/anthropic-sdk-ruby/commit/5a2123b581711ed40c929534dce645279b55c6b2))
624
+ * unknown commit message ([217f24b](https://github.com/anthropics/anthropic-sdk-ruby/commit/217f24bd034281d52a45b7fa8391a4207f2eec96))
625
+ * unknown commit message ([96a52f8](https://github.com/anthropics/anthropic-sdk-ruby/commit/96a52f8230c608738e9cc4af2e1872440c4569a8))
626
+ * unknown commit message ([4c88087](https://github.com/anthropics/anthropic-sdk-ruby/commit/4c880871e1e87758b6298e5830513de5cd692a02))
627
+ * unknown commit message ([3907f0b](https://github.com/anthropics/anthropic-sdk-ruby/commit/3907f0b22be2fc9eac8f61482046f0d8800cf624))
628
+ * unknown commit message ([f8bef83](https://github.com/anthropics/anthropic-sdk-ruby/commit/f8bef83e309e6f54d29e4f00268dc344241f8032))
629
+ * update basic usage examples ([d573682](https://github.com/anthropics/anthropic-sdk-ruby/commit/d573682cf78c7347059fa306e2b3cbee7dedfdf9))
630
+ * update custom timeout header name ([c4c9870](https://github.com/anthropics/anthropic-sdk-ruby/commit/c4c987007a36a34c100e48383efdd29d33bc43ca))
631
+ * update deps ([4736fe3](https://github.com/anthropics/anthropic-sdk-ruby/commit/4736fe3b24fafff748257cd21db8c265dfe4f707))
632
+ * update deps ([73f1827](https://github.com/anthropics/anthropic-sdk-ruby/commit/73f1827fa9b4cde920df59249a0c8fc27d978b06))
633
+ * update lockfile ([92c697d](https://github.com/anthropics/anthropic-sdk-ruby/commit/92c697d2db8f48f45ddae69e1c7fca7c713b2662))
634
+ * update readme ([#28](https://github.com/anthropics/anthropic-sdk-ruby/issues/28)) ([6f56971](https://github.com/anthropics/anthropic-sdk-ruby/commit/6f56971455470f4bfd59b5035a765cab35a6c1d8))
635
+ * update sorbet annotations for vertex and bedrock clients ([5310e3b](https://github.com/anthropics/anthropic-sdk-ruby/commit/5310e3b18c7c2f804e947419eb2abcec79633bec))
636
+ * update sorbet examples ([0a55362](https://github.com/anthropics/anthropic-sdk-ruby/commit/0a55362427a4d1f2f0bcf590d50d2a3356be8f64))
637
+ * update yard comment formatting ([#62](https://github.com/anthropics/anthropic-sdk-ruby/issues/62)) ([f3f4c25](https://github.com/anthropics/anthropic-sdk-ruby/commit/f3f4c25b8fe2bfe39d0362541ac76a912cdf3b49))
638
+ * updated lockfile ([187ea67](https://github.com/anthropics/anthropic-sdk-ruby/commit/187ea67c171d3ada873fc316ed6fcaf1443e694e))
639
+ * use `has_more` for pagination ([4e238c5](https://github.com/anthropics/anthropic-sdk-ruby/commit/4e238c5ad7f77069dcd16265c801bddcec5fd935))
640
+ * use concise syntax for pattern matching ([c1947ac](https://github.com/anthropics/anthropic-sdk-ruby/commit/c1947ac4cbc343a6e81f7eba678314e33385127a))
641
+ * use fully qualified name in sorbet README example ([#31](https://github.com/anthropics/anthropic-sdk-ruby/issues/31)) ([47a4d11](https://github.com/anthropics/anthropic-sdk-ruby/commit/47a4d11c13630c10f742998ea11d28f68c54ffc1))
642
+ * use generics instead of overloading for sorbet type definitions ([6ea42de](https://github.com/anthropics/anthropic-sdk-ruby/commit/6ea42dee14dc4b9086bcc1a79dcd2987da790c74))
643
+ * use more descriptive rubocop output format ([f5c2dc1](https://github.com/anthropics/anthropic-sdk-ruby/commit/f5c2dc1d21dc3e3696c14774a5b177f75c5d2f12))
644
+ * yard doc improvements ([e3f3559](https://github.com/anthropics/anthropic-sdk-ruby/commit/e3f355964dafb934fbef49bf94bc0b7cd5e64423))
645
+
646
+
647
+ ### Documentation
648
+
649
+ * update URLs from stainlessapi.com to stainless.com ([2ac10de](https://github.com/anthropics/anthropic-sdk-ruby/commit/2ac10decee796a6b8222da70023e235a74877a7a))
650
+ * use latest sonnet in example snippets ([236247b](https://github.com/anthropics/anthropic-sdk-ruby/commit/236247b370cfd126baa9399cfbb1b1b02b7a2af0))
651
+
652
+
653
+ ### Refactors
654
+
655
+ * avoid unnecessary setter invocation ([c815c7f](https://github.com/anthropics/anthropic-sdk-ruby/commit/c815c7f17c6bc7f8019791ce62bc54d221b64664))
656
+ * clean up base client send_request method ([213172e](https://github.com/anthropics/anthropic-sdk-ruby/commit/213172e4cef378fc280fee3429b6e449b33efdb0))
657
+ * client constructor ([7699572](https://github.com/anthropics/anthropic-sdk-ruby/commit/769957257171548b0a06d98d3ebfc419aa7a4fd1))
658
+ * **client:** extract ContentBlockParam type ([7546811](https://github.com/anthropics/anthropic-sdk-ruby/commit/7546811d6d177d27f2ba09e28cbe44fa959c3eb8))
659
+ * **client:** impose consistent sdk internals layout ([1e748e8](https://github.com/anthropics/anthropic-sdk-ruby/commit/1e748e8e7804b644daec5b40eb5d98e0b4117b92))
660
+ * extract out url handling functions into utils ([4e4523e](https://github.com/anthropics/anthropic-sdk-ruby/commit/4e4523ec5cbdb95704580a2d8b3d9b6b92164656))
661
+ * extract some base client internals into utils ([3a2d596](https://github.com/anthropics/anthropic-sdk-ruby/commit/3a2d596e223eb8e9ea8244468963076e15e79db4))
662
+ * private base client internals ([fefdaf2](https://github.com/anthropics/anthropic-sdk-ruby/commit/fefdaf26152537af76bc4fc97fa471bf16948e3d))
663
+ * remove special testing only request header ([bacbf53](https://github.com/anthropics/anthropic-sdk-ruby/commit/bacbf534fc9d91cb9ebd52211d8a0dfe2fafbae8))