openapi_openai 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (206) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/Gemfile.lock +72 -0
  4. data/README.md +171 -0
  5. data/Rakefile +10 -0
  6. data/bin/bundle +109 -0
  7. data/bin/byebug +27 -0
  8. data/bin/coderay +27 -0
  9. data/bin/htmldiff +27 -0
  10. data/bin/ldiff +27 -0
  11. data/bin/pry +27 -0
  12. data/bin/racc +27 -0
  13. data/bin/rake +27 -0
  14. data/bin/rspec +27 -0
  15. data/bin/rubocop +27 -0
  16. data/bin/ruby-parse +27 -0
  17. data/bin/ruby-rewrite +27 -0
  18. data/docs/ChatCompletionFunctions.md +22 -0
  19. data/docs/ChatCompletionRequestMessage.md +24 -0
  20. data/docs/ChatCompletionRequestMessageFunctionCall.md +20 -0
  21. data/docs/ChatCompletionResponseMessage.md +22 -0
  22. data/docs/ChatCompletionStreamResponseDelta.md +22 -0
  23. data/docs/CreateChatCompletionRequest.md +44 -0
  24. data/docs/CreateChatCompletionRequestFunctionCall.md +49 -0
  25. data/docs/CreateChatCompletionRequestFunctionCallOneOf.md +18 -0
  26. data/docs/CreateChatCompletionRequestModel.md +47 -0
  27. data/docs/CreateChatCompletionRequestStop.md +49 -0
  28. data/docs/CreateChatCompletionResponse.md +28 -0
  29. data/docs/CreateChatCompletionResponseChoicesInner.md +22 -0
  30. data/docs/CreateChatCompletionStreamResponse.md +26 -0
  31. data/docs/CreateChatCompletionStreamResponseChoicesInner.md +22 -0
  32. data/docs/CreateCompletionRequest.md +48 -0
  33. data/docs/CreateCompletionRequestModel.md +47 -0
  34. data/docs/CreateCompletionRequestPrompt.md +53 -0
  35. data/docs/CreateCompletionRequestStop.md +49 -0
  36. data/docs/CreateCompletionResponse.md +28 -0
  37. data/docs/CreateCompletionResponseChoicesInner.md +24 -0
  38. data/docs/CreateCompletionResponseChoicesInnerLogprobs.md +24 -0
  39. data/docs/CreateCompletionResponseUsage.md +22 -0
  40. data/docs/CreateEditRequest.md +28 -0
  41. data/docs/CreateEditRequestModel.md +47 -0
  42. data/docs/CreateEditResponse.md +24 -0
  43. data/docs/CreateEditResponseChoicesInner.md +24 -0
  44. data/docs/CreateEmbeddingRequest.md +22 -0
  45. data/docs/CreateEmbeddingRequestInput.md +53 -0
  46. data/docs/CreateEmbeddingRequestModel.md +47 -0
  47. data/docs/CreateEmbeddingResponse.md +24 -0
  48. data/docs/CreateEmbeddingResponseDataInner.md +22 -0
  49. data/docs/CreateEmbeddingResponseUsage.md +20 -0
  50. data/docs/CreateFineTuneRequest.md +40 -0
  51. data/docs/CreateFineTuneRequestModel.md +47 -0
  52. data/docs/CreateImageRequest.md +26 -0
  53. data/docs/CreateModerationRequest.md +20 -0
  54. data/docs/CreateModerationRequestInput.md +49 -0
  55. data/docs/CreateModerationRequestModel.md +47 -0
  56. data/docs/CreateModerationResponse.md +22 -0
  57. data/docs/CreateModerationResponseResultsInner.md +22 -0
  58. data/docs/CreateModerationResponseResultsInnerCategories.md +30 -0
  59. data/docs/CreateModerationResponseResultsInnerCategoryScores.md +30 -0
  60. data/docs/CreateTranscriptionRequestModel.md +47 -0
  61. data/docs/CreateTranscriptionResponse.md +18 -0
  62. data/docs/CreateTranslationResponse.md +18 -0
  63. data/docs/DeleteFileResponse.md +22 -0
  64. data/docs/DeleteModelResponse.md +22 -0
  65. data/docs/Error.md +24 -0
  66. data/docs/ErrorResponse.md +18 -0
  67. data/docs/FineTune.md +42 -0
  68. data/docs/FineTuneEvent.md +24 -0
  69. data/docs/ImagesResponse.md +20 -0
  70. data/docs/ImagesResponseDataInner.md +20 -0
  71. data/docs/ListFilesResponse.md +20 -0
  72. data/docs/ListFineTuneEventsResponse.md +20 -0
  73. data/docs/ListFineTunesResponse.md +20 -0
  74. data/docs/ListModelsResponse.md +20 -0
  75. data/docs/Model.md +24 -0
  76. data/docs/OpenAIApi.md +1499 -0
  77. data/docs/OpenAIFile.md +32 -0
  78. data/git_push.sh +57 -0
  79. data/lib/openapi_openai/api/open_ai_api.rb +1583 -0
  80. data/lib/openapi_openai/api_client.rb +393 -0
  81. data/lib/openapi_openai/api_error.rb +58 -0
  82. data/lib/openapi_openai/configuration.rb +291 -0
  83. data/lib/openapi_openai/models/chat_completion_functions.rb +244 -0
  84. data/lib/openapi_openai/models/chat_completion_request_message.rb +285 -0
  85. data/lib/openapi_openai/models/chat_completion_request_message_function_call.rb +226 -0
  86. data/lib/openapi_openai/models/chat_completion_response_message.rb +276 -0
  87. data/lib/openapi_openai/models/chat_completion_stream_response_delta.rb +269 -0
  88. data/lib/openapi_openai/models/create_chat_completion_request.rb +537 -0
  89. data/lib/openapi_openai/models/create_chat_completion_request_function_call.rb +106 -0
  90. data/lib/openapi_openai/models/create_chat_completion_request_function_call_one_of.rb +222 -0
  91. data/lib/openapi_openai/models/create_chat_completion_request_model.rb +105 -0
  92. data/lib/openapi_openai/models/create_chat_completion_request_stop.rb +106 -0
  93. data/lib/openapi_openai/models/create_chat_completion_response.rb +296 -0
  94. data/lib/openapi_openai/models/create_chat_completion_response_choices_inner.rb +266 -0
  95. data/lib/openapi_openai/models/create_chat_completion_stream_response.rb +287 -0
  96. data/lib/openapi_openai/models/create_chat_completion_stream_response_choices_inner.rb +266 -0
  97. data/lib/openapi_openai/models/create_completion_request.rb +586 -0
  98. data/lib/openapi_openai/models/create_completion_request_model.rb +105 -0
  99. data/lib/openapi_openai/models/create_completion_request_prompt.rb +108 -0
  100. data/lib/openapi_openai/models/create_completion_request_stop.rb +106 -0
  101. data/lib/openapi_openai/models/create_completion_response.rb +296 -0
  102. data/lib/openapi_openai/models/create_completion_response_choices_inner.rb +299 -0
  103. data/lib/openapi_openai/models/create_completion_response_choices_inner_logprobs.rb +249 -0
  104. data/lib/openapi_openai/models/create_completion_response_usage.rb +253 -0
  105. data/lib/openapi_openai/models/create_edit_request.rb +362 -0
  106. data/lib/openapi_openai/models/create_edit_request_model.rb +105 -0
  107. data/lib/openapi_openai/models/create_edit_response.rb +271 -0
  108. data/lib/openapi_openai/models/create_edit_response_choices_inner.rb +276 -0
  109. data/lib/openapi_openai/models/create_embedding_request.rb +247 -0
  110. data/lib/openapi_openai/models/create_embedding_request_input.rb +108 -0
  111. data/lib/openapi_openai/models/create_embedding_request_model.rb +105 -0
  112. data/lib/openapi_openai/models/create_embedding_response.rb +271 -0
  113. data/lib/openapi_openai/models/create_embedding_response_data_inner.rb +255 -0
  114. data/lib/openapi_openai/models/create_embedding_response_usage.rb +237 -0
  115. data/lib/openapi_openai/models/create_fine_tune_request.rb +374 -0
  116. data/lib/openapi_openai/models/create_fine_tune_request_model.rb +105 -0
  117. data/lib/openapi_openai/models/create_image_request.rb +341 -0
  118. data/lib/openapi_openai/models/create_moderation_request.rb +230 -0
  119. data/lib/openapi_openai/models/create_moderation_request_input.rb +106 -0
  120. data/lib/openapi_openai/models/create_moderation_request_model.rb +105 -0
  121. data/lib/openapi_openai/models/create_moderation_response.rb +255 -0
  122. data/lib/openapi_openai/models/create_moderation_response_results_inner.rb +253 -0
  123. data/lib/openapi_openai/models/create_moderation_response_results_inner_categories.rb +317 -0
  124. data/lib/openapi_openai/models/create_moderation_response_results_inner_category_scores.rb +317 -0
  125. data/lib/openapi_openai/models/create_transcription_request_model.rb +105 -0
  126. data/lib/openapi_openai/models/create_transcription_response.rb +221 -0
  127. data/lib/openapi_openai/models/create_translation_response.rb +221 -0
  128. data/lib/openapi_openai/models/delete_file_response.rb +253 -0
  129. data/lib/openapi_openai/models/delete_model_response.rb +253 -0
  130. data/lib/openapi_openai/models/error.rb +261 -0
  131. data/lib/openapi_openai/models/error_response.rb +221 -0
  132. data/lib/openapi_openai/models/fine_tune.rb +410 -0
  133. data/lib/openapi_openai/models/fine_tune_event.rb +269 -0
  134. data/lib/openapi_openai/models/images_response.rb +239 -0
  135. data/lib/openapi_openai/models/images_response_data_inner.rb +223 -0
  136. data/lib/openapi_openai/models/list_files_response.rb +239 -0
  137. data/lib/openapi_openai/models/list_fine_tune_events_response.rb +239 -0
  138. data/lib/openapi_openai/models/list_fine_tunes_response.rb +239 -0
  139. data/lib/openapi_openai/models/list_models_response.rb +239 -0
  140. data/lib/openapi_openai/models/model.rb +269 -0
  141. data/lib/openapi_openai/models/open_ai_file.rb +320 -0
  142. data/lib/openapi_openai/version.rb +15 -0
  143. data/lib/openapi_openai.rb +99 -0
  144. data/openapi_openai.gemspec +39 -0
  145. data/spec/api/open_ai_api_spec.rb +306 -0
  146. data/spec/models/chat_completion_functions_spec.rb +48 -0
  147. data/spec/models/chat_completion_request_message_function_call_spec.rb +42 -0
  148. data/spec/models/chat_completion_request_message_spec.rb +58 -0
  149. data/spec/models/chat_completion_response_message_spec.rb +52 -0
  150. data/spec/models/chat_completion_stream_response_delta_spec.rb +52 -0
  151. data/spec/models/create_chat_completion_request_function_call_one_of_spec.rb +36 -0
  152. data/spec/models/create_chat_completion_request_function_call_spec.rb +32 -0
  153. data/spec/models/create_chat_completion_request_model_spec.rb +32 -0
  154. data/spec/models/create_chat_completion_request_spec.rb +114 -0
  155. data/spec/models/create_chat_completion_request_stop_spec.rb +32 -0
  156. data/spec/models/create_chat_completion_response_choices_inner_spec.rb +52 -0
  157. data/spec/models/create_chat_completion_response_spec.rb +66 -0
  158. data/spec/models/create_chat_completion_stream_response_choices_inner_spec.rb +52 -0
  159. data/spec/models/create_chat_completion_stream_response_spec.rb +60 -0
  160. data/spec/models/create_completion_request_model_spec.rb +32 -0
  161. data/spec/models/create_completion_request_prompt_spec.rb +32 -0
  162. data/spec/models/create_completion_request_spec.rb +126 -0
  163. data/spec/models/create_completion_request_stop_spec.rb +32 -0
  164. data/spec/models/create_completion_response_choices_inner_logprobs_spec.rb +54 -0
  165. data/spec/models/create_completion_response_choices_inner_spec.rb +58 -0
  166. data/spec/models/create_completion_response_spec.rb +66 -0
  167. data/spec/models/create_completion_response_usage_spec.rb +48 -0
  168. data/spec/models/create_edit_request_model_spec.rb +32 -0
  169. data/spec/models/create_edit_request_spec.rb +66 -0
  170. data/spec/models/create_edit_response_choices_inner_spec.rb +58 -0
  171. data/spec/models/create_edit_response_spec.rb +54 -0
  172. data/spec/models/create_embedding_request_input_spec.rb +32 -0
  173. data/spec/models/create_embedding_request_model_spec.rb +32 -0
  174. data/spec/models/create_embedding_request_spec.rb +48 -0
  175. data/spec/models/create_embedding_response_data_inner_spec.rb +48 -0
  176. data/spec/models/create_embedding_response_spec.rb +54 -0
  177. data/spec/models/create_embedding_response_usage_spec.rb +42 -0
  178. data/spec/models/create_fine_tune_request_model_spec.rb +32 -0
  179. data/spec/models/create_fine_tune_request_spec.rb +102 -0
  180. data/spec/models/create_image_request_spec.rb +68 -0
  181. data/spec/models/create_moderation_request_input_spec.rb +32 -0
  182. data/spec/models/create_moderation_request_model_spec.rb +32 -0
  183. data/spec/models/create_moderation_request_spec.rb +42 -0
  184. data/spec/models/create_moderation_response_results_inner_categories_spec.rb +72 -0
  185. data/spec/models/create_moderation_response_results_inner_category_scores_spec.rb +72 -0
  186. data/spec/models/create_moderation_response_results_inner_spec.rb +48 -0
  187. data/spec/models/create_moderation_response_spec.rb +48 -0
  188. data/spec/models/create_transcription_request_model_spec.rb +32 -0
  189. data/spec/models/create_transcription_response_spec.rb +36 -0
  190. data/spec/models/create_translation_response_spec.rb +36 -0
  191. data/spec/models/delete_file_response_spec.rb +48 -0
  192. data/spec/models/delete_model_response_spec.rb +48 -0
  193. data/spec/models/error_response_spec.rb +36 -0
  194. data/spec/models/error_spec.rb +54 -0
  195. data/spec/models/fine_tune_event_spec.rb +54 -0
  196. data/spec/models/fine_tune_spec.rb +108 -0
  197. data/spec/models/images_response_data_inner_spec.rb +42 -0
  198. data/spec/models/images_response_spec.rb +42 -0
  199. data/spec/models/list_files_response_spec.rb +42 -0
  200. data/spec/models/list_fine_tune_events_response_spec.rb +42 -0
  201. data/spec/models/list_fine_tunes_response_spec.rb +42 -0
  202. data/spec/models/list_models_response_spec.rb +42 -0
  203. data/spec/models/model_spec.rb +54 -0
  204. data/spec/models/open_ai_file_spec.rb +78 -0
  205. data/spec/spec_helper.rb +111 -0
  206. metadata +348 -0
@@ -0,0 +1,22 @@
1
+ # OpenApiOpenAIClient::CreateModerationResponseResultsInner
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **flagged** | **Boolean** | | |
8
+ | **categories** | [**CreateModerationResponseResultsInnerCategories**](CreateModerationResponseResultsInnerCategories.md) | | |
9
+ | **category_scores** | [**CreateModerationResponseResultsInnerCategoryScores**](CreateModerationResponseResultsInnerCategoryScores.md) | | |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'openapi_openai'
15
+
16
+ instance = OpenApiOpenAIClient::CreateModerationResponseResultsInner.new(
17
+ flagged: null,
18
+ categories: null,
19
+ category_scores: null
20
+ )
21
+ ```
22
+
@@ -0,0 +1,30 @@
1
+ # OpenApiOpenAIClient::CreateModerationResponseResultsInnerCategories
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **hate** | **Boolean** | | |
8
+ | **hate_threatening** | **Boolean** | | |
9
+ | **self_harm** | **Boolean** | | |
10
+ | **sexual** | **Boolean** | | |
11
+ | **sexual_minors** | **Boolean** | | |
12
+ | **violence** | **Boolean** | | |
13
+ | **violence_graphic** | **Boolean** | | |
14
+
15
+ ## Example
16
+
17
+ ```ruby
18
+ require 'openapi_openai'
19
+
20
+ instance = OpenApiOpenAIClient::CreateModerationResponseResultsInnerCategories.new(
21
+ hate: null,
22
+ hate_threatening: null,
23
+ self_harm: null,
24
+ sexual: null,
25
+ sexual_minors: null,
26
+ violence: null,
27
+ violence_graphic: null
28
+ )
29
+ ```
30
+
@@ -0,0 +1,30 @@
1
+ # OpenApiOpenAIClient::CreateModerationResponseResultsInnerCategoryScores
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **hate** | **Float** | | |
8
+ | **hate_threatening** | **Float** | | |
9
+ | **self_harm** | **Float** | | |
10
+ | **sexual** | **Float** | | |
11
+ | **sexual_minors** | **Float** | | |
12
+ | **violence** | **Float** | | |
13
+ | **violence_graphic** | **Float** | | |
14
+
15
+ ## Example
16
+
17
+ ```ruby
18
+ require 'openapi_openai'
19
+
20
+ instance = OpenApiOpenAIClient::CreateModerationResponseResultsInnerCategoryScores.new(
21
+ hate: null,
22
+ hate_threatening: null,
23
+ self_harm: null,
24
+ sexual: null,
25
+ sexual_minors: null,
26
+ violence: null,
27
+ violence_graphic: null
28
+ )
29
+ ```
30
+
@@ -0,0 +1,47 @@
1
+ # OpenApiOpenAIClient::CreateTranscriptionRequestModel
2
+
3
+ ## Class instance methods
4
+
5
+ ### `openapi_one_of`
6
+
7
+ Returns the list of classes defined in oneOf.
8
+
9
+ #### Example
10
+
11
+ ```ruby
12
+ require 'openapi_openai'
13
+
14
+ OpenApiOpenAIClient::CreateTranscriptionRequestModel.openapi_one_of
15
+ # =>
16
+ # [
17
+ # :'String'
18
+ # ]
19
+ ```
20
+
21
+ ### build
22
+
23
+ Find the appropriate object from the `openapi_one_of` list and casts the data into it.
24
+
25
+ #### Example
26
+
27
+ ```ruby
28
+ require 'openapi_openai'
29
+
30
+ OpenApiOpenAIClient::CreateTranscriptionRequestModel.build(data)
31
+ # => #<String:0x00007fdd4aab02a0>
32
+
33
+ OpenApiOpenAIClient::CreateTranscriptionRequestModel.build(data_that_doesnt_match)
34
+ # => nil
35
+ ```
36
+
37
+ #### Parameters
38
+
39
+ | Name | Type | Description |
40
+ | ---- | ---- | ----------- |
41
+ | **data** | **Mixed** | data to be matched against the list of oneOf items |
42
+
43
+ #### Return type
44
+
45
+ - `String`
46
+ - `nil` (if no type matches)
47
+
@@ -0,0 +1,18 @@
1
+ # OpenApiOpenAIClient::CreateTranscriptionResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **text** | **String** | | |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'openapi_openai'
13
+
14
+ instance = OpenApiOpenAIClient::CreateTranscriptionResponse.new(
15
+ text: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,18 @@
1
+ # OpenApiOpenAIClient::CreateTranslationResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **text** | **String** | | |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'openapi_openai'
13
+
14
+ instance = OpenApiOpenAIClient::CreateTranslationResponse.new(
15
+ text: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,22 @@
1
+ # OpenApiOpenAIClient::DeleteFileResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | |
8
+ | **object** | **String** | | |
9
+ | **deleted** | **Boolean** | | |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'openapi_openai'
15
+
16
+ instance = OpenApiOpenAIClient::DeleteFileResponse.new(
17
+ id: null,
18
+ object: null,
19
+ deleted: null
20
+ )
21
+ ```
22
+
@@ -0,0 +1,22 @@
1
+ # OpenApiOpenAIClient::DeleteModelResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | |
8
+ | **object** | **String** | | |
9
+ | **deleted** | **Boolean** | | |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'openapi_openai'
15
+
16
+ instance = OpenApiOpenAIClient::DeleteModelResponse.new(
17
+ id: null,
18
+ object: null,
19
+ deleted: null
20
+ )
21
+ ```
22
+
data/docs/Error.md ADDED
@@ -0,0 +1,24 @@
1
+ # OpenApiOpenAIClient::Error
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **type** | **String** | | |
8
+ | **message** | **String** | | |
9
+ | **param** | **String** | | |
10
+ | **code** | **String** | | |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'openapi_openai'
16
+
17
+ instance = OpenApiOpenAIClient::Error.new(
18
+ type: null,
19
+ message: null,
20
+ param: null,
21
+ code: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,18 @@
1
+ # OpenApiOpenAIClient::ErrorResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **error** | [**Error**](Error.md) | | |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'openapi_openai'
13
+
14
+ instance = OpenApiOpenAIClient::ErrorResponse.new(
15
+ error: null
16
+ )
17
+ ```
18
+
data/docs/FineTune.md ADDED
@@ -0,0 +1,42 @@
1
+ # OpenApiOpenAIClient::FineTune
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | |
8
+ | **object** | **String** | | |
9
+ | **created_at** | **Integer** | | |
10
+ | **updated_at** | **Integer** | | |
11
+ | **model** | **String** | | |
12
+ | **fine_tuned_model** | **String** | | |
13
+ | **organization_id** | **String** | | |
14
+ | **status** | **String** | | |
15
+ | **hyperparams** | **Object** | | |
16
+ | **training_files** | [**Array&lt;OpenAIFile&gt;**](OpenAIFile.md) | | |
17
+ | **validation_files** | [**Array&lt;OpenAIFile&gt;**](OpenAIFile.md) | | |
18
+ | **result_files** | [**Array&lt;OpenAIFile&gt;**](OpenAIFile.md) | | |
19
+ | **events** | [**Array&lt;FineTuneEvent&gt;**](FineTuneEvent.md) | | [optional] |
20
+
21
+ ## Example
22
+
23
+ ```ruby
24
+ require 'openapi_openai'
25
+
26
+ instance = OpenApiOpenAIClient::FineTune.new(
27
+ id: null,
28
+ object: null,
29
+ created_at: null,
30
+ updated_at: null,
31
+ model: null,
32
+ fine_tuned_model: null,
33
+ organization_id: null,
34
+ status: null,
35
+ hyperparams: null,
36
+ training_files: null,
37
+ validation_files: null,
38
+ result_files: null,
39
+ events: null
40
+ )
41
+ ```
42
+
@@ -0,0 +1,24 @@
1
+ # OpenApiOpenAIClient::FineTuneEvent
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **object** | **String** | | |
8
+ | **created_at** | **Integer** | | |
9
+ | **level** | **String** | | |
10
+ | **message** | **String** | | |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'openapi_openai'
16
+
17
+ instance = OpenApiOpenAIClient::FineTuneEvent.new(
18
+ object: null,
19
+ created_at: null,
20
+ level: null,
21
+ message: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,20 @@
1
+ # OpenApiOpenAIClient::ImagesResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **created** | **Integer** | | |
8
+ | **data** | [**Array&lt;ImagesResponseDataInner&gt;**](ImagesResponseDataInner.md) | | |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'openapi_openai'
14
+
15
+ instance = OpenApiOpenAIClient::ImagesResponse.new(
16
+ created: null,
17
+ data: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,20 @@
1
+ # OpenApiOpenAIClient::ImagesResponseDataInner
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **url** | **String** | | [optional] |
8
+ | **b64_json** | **String** | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'openapi_openai'
14
+
15
+ instance = OpenApiOpenAIClient::ImagesResponseDataInner.new(
16
+ url: null,
17
+ b64_json: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,20 @@
1
+ # OpenApiOpenAIClient::ListFilesResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **object** | **String** | | |
8
+ | **data** | [**Array&lt;OpenAIFile&gt;**](OpenAIFile.md) | | |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'openapi_openai'
14
+
15
+ instance = OpenApiOpenAIClient::ListFilesResponse.new(
16
+ object: null,
17
+ data: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,20 @@
1
+ # OpenApiOpenAIClient::ListFineTuneEventsResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **object** | **String** | | |
8
+ | **data** | [**Array&lt;FineTuneEvent&gt;**](FineTuneEvent.md) | | |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'openapi_openai'
14
+
15
+ instance = OpenApiOpenAIClient::ListFineTuneEventsResponse.new(
16
+ object: null,
17
+ data: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,20 @@
1
+ # OpenApiOpenAIClient::ListFineTunesResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **object** | **String** | | |
8
+ | **data** | [**Array&lt;FineTune&gt;**](FineTune.md) | | |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'openapi_openai'
14
+
15
+ instance = OpenApiOpenAIClient::ListFineTunesResponse.new(
16
+ object: null,
17
+ data: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,20 @@
1
+ # OpenApiOpenAIClient::ListModelsResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **object** | **String** | | |
8
+ | **data** | [**Array&lt;Model&gt;**](Model.md) | | |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'openapi_openai'
14
+
15
+ instance = OpenApiOpenAIClient::ListModelsResponse.new(
16
+ object: null,
17
+ data: null
18
+ )
19
+ ```
20
+
data/docs/Model.md ADDED
@@ -0,0 +1,24 @@
1
+ # OpenApiOpenAIClient::Model
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | |
8
+ | **object** | **String** | | |
9
+ | **created** | **Integer** | | |
10
+ | **owned_by** | **String** | | |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'openapi_openai'
16
+
17
+ instance = OpenApiOpenAIClient::Model.new(
18
+ id: null,
19
+ object: null,
20
+ created: null,
21
+ owned_by: null
22
+ )
23
+ ```
24
+