├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── create-releases.yml │ ├── detect-breaking-changes.yml │ ├── publish-pypi.yml │ └── release-doctor.yml ├── .gitignore ├── .inline-snapshot └── external │ ├── .gitignore │ ├── 173417d553406f034f643e5db3f8d591fb691ebac56f5ae39a22cc7d455c5353.bin │ ├── 2018feb66ae13fcf5333d61b95849decc68d3f63bd38172889367e1afb1e04f7.bin │ ├── 4cc50a6135d254573a502310e6af1246f55edb6ad95fa24059f160996b68866d.bin │ ├── 569c877e69429d4cbc1577d2cd6dd33878095c68badc6b6654a69769b391a1c1.bin │ ├── 7e5ea4d12e7cc064399b6631415e65923f182256b6e6b752950a3aaa2ad2320a.bin │ ├── 83b060bae42eb41c4f1edbb7c1542b954b37d9dfd1910b964ddebc9677e6ae85.bin │ ├── a247c49c5fcd492bfb7a02a3306ad615ed8d8f649888ebfddfbc3ee151f44d46.bin │ ├── a491adda08c3d4fde95f5b2ee3f60f7f745f1a56d82e62f58031cc2add502380.bin │ ├── c6aa7e397b7123c3501f25df3a05d4daf7e8ad6d61ffa406ab5361fe36a8d5b1.bin │ ├── d615580118391ee13492193e3a8bb74642d23ac1ca13fe37cb6e889b66f759f6.bin │ ├── e2aad469b71d1d4894ff833ea147020a9d875eb7ce644a0ff355581690a4cbfd.bin │ └── f82268f2fefd5cfbc7eeb59c297688be2f6ca0849a6e4f17851b517310841d9b.bin ├── .python-version ├── .release-please-manifest.json ├── .stats.yml ├── .vscode └── settings.json ├── Brewfile ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── api.md ├── bin ├── check-release-environment └── publish-pypi ├── examples ├── .keep ├── async_demo.py ├── audio.py ├── azure.py ├── azure_ad.py ├── demo.py ├── generate_file.sh ├── image_stream.py ├── module_client.py ├── parsing.py ├── parsing_stream.py ├── parsing_tools.py ├── parsing_tools_stream.py ├── picture.py ├── realtime │ ├── audio_util.py │ ├── azure_realtime.py │ ├── push_to_talk_app.py │ └── realtime.py ├── responses │ ├── __init__.py │ ├── background.py │ ├── background_async.py │ ├── background_streaming.py │ ├── background_streaming_async.py │ ├── streaming.py │ ├── streaming_tools.py │ ├── structured_outputs.py │ └── structured_outputs_tools.py ├── responses_input_tokens.py ├── speech_to_text.py ├── streaming.py ├── text_to_speech.py ├── uploads.py └── video.py ├── helpers.md ├── noxfile.py ├── pyproject.toml ├── release-please-config.json ├── requirements-dev.lock ├── requirements.lock ├── scripts ├── bootstrap ├── detect-breaking-changes ├── detect-breaking-changes.py ├── format ├── lint ├── mock ├── test └── utils │ ├── ruffen-docs.py │ └── upload-artifact.sh ├── src └── openai │ ├── __init__.py │ ├── __main__.py │ ├── _base_client.py │ ├── _client.py │ ├── _compat.py │ ├── _constants.py │ ├── _exceptions.py │ ├── _extras │ ├── __init__.py │ ├── _common.py │ ├── numpy_proxy.py │ ├── pandas_proxy.py │ └── sounddevice_proxy.py │ ├── _files.py │ ├── _legacy_response.py │ ├── _models.py │ ├── _module_client.py │ ├── _qs.py │ ├── _resource.py │ ├── _response.py │ ├── _streaming.py │ ├── _types.py │ ├── _utils │ ├── __init__.py │ ├── _compat.py │ ├── _datetime_parse.py │ ├── _logs.py │ ├── _proxy.py │ ├── _reflection.py │ ├── _resources_proxy.py │ ├── _streams.py │ ├── _sync.py │ ├── _transform.py │ ├── _typing.py │ └── _utils.py │ ├── _version.py │ ├── cli │ ├── __init__.py │ ├── _api │ │ ├── __init__.py │ │ ├── _main.py │ │ ├── audio.py │ │ ├── chat │ │ │ ├── __init__.py │ │ │ └── completions.py │ │ ├── completions.py │ │ ├── files.py │ │ ├── fine_tuning │ │ │ ├── __init__.py │ │ │ └── jobs.py │ │ ├── image.py │ │ └── models.py │ ├── _cli.py │ ├── _errors.py │ ├── _models.py │ ├── _progress.py │ ├── _tools │ │ ├── __init__.py │ │ ├── _main.py │ │ ├── fine_tunes.py │ │ └── migrate.py │ └── _utils.py │ ├── helpers │ ├── __init__.py │ ├── local_audio_player.py │ └── microphone.py │ ├── lib │ ├── .keep │ ├── __init__.py │ ├── _old_api.py │ ├── _parsing │ │ ├── __init__.py │ │ ├── _completions.py │ │ └── _responses.py │ ├── _pydantic.py │ ├── _realtime.py │ ├── _tools.py │ ├── _validators.py │ ├── azure.py │ └── streaming │ │ ├── __init__.py │ │ ├── _assistants.py │ │ ├── _deltas.py │ │ ├── chat │ │ ├── __init__.py │ │ ├── _completions.py │ │ ├── _events.py │ │ └── _types.py │ │ └── responses │ │ ├── __init__.py │ │ ├── _events.py │ │ ├── _responses.py │ │ └── _types.py │ ├── pagination.py │ ├── py.typed │ ├── resources │ ├── __init__.py │ ├── audio │ │ ├── __init__.py │ │ ├── audio.py │ │ ├── speech.py │ │ ├── transcriptions.py │ │ └── translations.py │ ├── batches.py │ ├── beta │ │ ├── __init__.py │ │ ├── assistants.py │ │ ├── beta.py │ │ ├── chatkit │ │ │ ├── __init__.py │ │ │ ├── chatkit.py │ │ │ ├── sessions.py │ │ │ └── threads.py │ │ ├── realtime │ │ │ ├── __init__.py │ │ │ ├── realtime.py │ │ │ ├── sessions.py │ │ │ └── transcription_sessions.py │ │ └── threads │ │ │ ├── __init__.py │ │ │ ├── messages.py │ │ │ ├── runs │ │ │ ├── __init__.py │ │ │ ├── runs.py │ │ │ └── steps.py │ │ │ └── threads.py │ ├── chat │ │ ├── __init__.py │ │ ├── chat.py │ │ └── completions │ │ │ ├── __init__.py │ │ │ ├── completions.py │ │ │ └── messages.py │ ├── completions.py │ ├── containers │ │ ├── __init__.py │ │ ├── containers.py │ │ └── files │ │ │ ├── __init__.py │ │ │ ├── content.py │ │ │ └── files.py │ ├── conversations │ │ ├── __init__.py │ │ ├── conversations.py │ │ └── items.py │ ├── embeddings.py │ ├── evals │ │ ├── __init__.py │ │ ├── evals.py │ │ └── runs │ │ │ ├── __init__.py │ │ │ ├── output_items.py │ │ │ └── runs.py │ ├── files.py │ ├── fine_tuning │ │ ├── __init__.py │ │ ├── alpha │ │ │ ├── __init__.py │ │ │ ├── alpha.py │ │ │ └── graders.py │ │ ├── checkpoints │ │ │ ├── __init__.py │ │ │ ├── checkpoints.py │ │ │ └── permissions.py │ │ ├── fine_tuning.py │ │ └── jobs │ │ │ ├── __init__.py │ │ │ ├── checkpoints.py │ │ │ └── jobs.py │ ├── images.py │ ├── models.py │ ├── moderations.py │ ├── realtime │ │ ├── __init__.py │ │ ├── calls.py │ │ ├── client_secrets.py │ │ └── realtime.py │ ├── responses │ │ ├── __init__.py │ │ ├── input_items.py │ │ ├── input_tokens.py │ │ └── responses.py │ ├── uploads │ │ ├── __init__.py │ │ ├── parts.py │ │ └── uploads.py │ ├── vector_stores │ │ ├── __init__.py │ │ ├── file_batches.py │ │ ├── files.py │ │ └── vector_stores.py │ ├── videos.py │ └── webhooks.py │ ├── types │ ├── __init__.py │ ├── audio │ │ ├── __init__.py │ │ ├── speech_create_params.py │ │ ├── speech_model.py │ │ ├── transcription.py │ │ ├── transcription_create_params.py │ │ ├── transcription_create_response.py │ │ ├── transcription_diarized.py │ │ ├── transcription_diarized_segment.py │ │ ├── transcription_include.py │ │ ├── transcription_segment.py │ │ ├── transcription_stream_event.py │ │ ├── transcription_text_delta_event.py │ │ ├── transcription_text_done_event.py │ │ ├── transcription_text_segment_event.py │ │ ├── transcription_verbose.py │ │ ├── transcription_word.py │ │ ├── translation.py │ │ ├── translation_create_params.py │ │ ├── translation_create_response.py │ │ └── translation_verbose.py │ ├── audio_model.py │ ├── audio_response_format.py │ ├── auto_file_chunking_strategy_param.py │ ├── batch.py │ ├── batch_create_params.py │ ├── batch_error.py │ ├── batch_list_params.py │ ├── batch_request_counts.py │ ├── batch_usage.py │ ├── beta │ │ ├── __init__.py │ │ ├── assistant.py │ │ ├── assistant_create_params.py │ │ ├── assistant_deleted.py │ │ ├── assistant_list_params.py │ │ ├── assistant_response_format_option.py │ │ ├── assistant_response_format_option_param.py │ │ ├── assistant_stream_event.py │ │ ├── assistant_tool.py │ │ ├── assistant_tool_choice.py │ │ ├── assistant_tool_choice_function.py │ │ ├── assistant_tool_choice_function_param.py │ │ ├── assistant_tool_choice_option.py │ │ ├── assistant_tool_choice_option_param.py │ │ ├── assistant_tool_choice_param.py │ │ ├── assistant_tool_param.py │ │ ├── assistant_update_params.py │ │ ├── chat │ │ │ └── __init__.py │ │ ├── chatkit │ │ │ ├── __init__.py │ │ │ ├── chat_session.py │ │ │ ├── chat_session_automatic_thread_titling.py │ │ │ ├── chat_session_chatkit_configuration.py │ │ │ ├── chat_session_chatkit_configuration_param.py │ │ │ ├── chat_session_expires_after_param.py │ │ │ ├── chat_session_file_upload.py │ │ │ ├── chat_session_history.py │ │ │ ├── chat_session_rate_limits.py │ │ │ ├── chat_session_rate_limits_param.py │ │ │ ├── chat_session_status.py │ │ │ ├── chat_session_workflow_param.py │ │ │ ├── chatkit_attachment.py │ │ │ ├── chatkit_response_output_text.py │ │ │ ├── chatkit_thread.py │ │ │ ├── chatkit_thread_assistant_message_item.py │ │ │ ├── chatkit_thread_item_list.py │ │ │ ├── chatkit_thread_user_message_item.py │ │ │ ├── chatkit_widget_item.py │ │ │ ├── session_create_params.py │ │ │ ├── thread_delete_response.py │ │ │ ├── thread_list_items_params.py │ │ │ └── thread_list_params.py │ │ ├── chatkit_workflow.py │ │ ├── code_interpreter_tool.py │ │ ├── code_interpreter_tool_param.py │ │ ├── file_search_tool.py │ │ ├── file_search_tool_param.py │ │ ├── function_tool.py │ │ ├── function_tool_param.py │ │ ├── realtime │ │ │ ├── __init__.py │ │ │ ├── conversation_created_event.py │ │ │ ├── conversation_item.py │ │ │ ├── conversation_item_content.py │ │ │ ├── conversation_item_content_param.py │ │ │ ├── conversation_item_create_event.py │ │ │ ├── conversation_item_create_event_param.py │ │ │ ├── conversation_item_created_event.py │ │ │ ├── conversation_item_delete_event.py │ │ │ ├── conversation_item_delete_event_param.py │ │ │ ├── conversation_item_deleted_event.py │ │ │ ├── conversation_item_input_audio_transcription_completed_event.py │ │ │ ├── conversation_item_input_audio_transcription_delta_event.py │ │ │ ├── conversation_item_input_audio_transcription_failed_event.py │ │ │ ├── conversation_item_param.py │ │ │ ├── conversation_item_retrieve_event.py │ │ │ ├── conversation_item_retrieve_event_param.py │ │ │ ├── conversation_item_truncate_event.py │ │ │ ├── conversation_item_truncate_event_param.py │ │ │ ├── conversation_item_truncated_event.py │ │ │ ├── conversation_item_with_reference.py │ │ │ ├── conversation_item_with_reference_param.py │ │ │ ├── error_event.py │ │ │ ├── input_audio_buffer_append_event.py │ │ │ ├── input_audio_buffer_append_event_param.py │ │ │ ├── input_audio_buffer_clear_event.py │ │ │ ├── input_audio_buffer_clear_event_param.py │ │ │ ├── input_audio_buffer_cleared_event.py │ │ │ ├── input_audio_buffer_commit_event.py │ │ │ ├── input_audio_buffer_commit_event_param.py │ │ │ ├── input_audio_buffer_committed_event.py │ │ │ ├── input_audio_buffer_speech_started_event.py │ │ │ ├── input_audio_buffer_speech_stopped_event.py │ │ │ ├── rate_limits_updated_event.py │ │ │ ├── realtime_client_event.py │ │ │ ├── realtime_client_event_param.py │ │ │ ├── realtime_connect_params.py │ │ │ ├── realtime_response.py │ │ │ ├── realtime_response_status.py │ │ │ ├── realtime_response_usage.py │ │ │ ├── realtime_server_event.py │ │ │ ├── response_audio_delta_event.py │ │ │ ├── response_audio_done_event.py │ │ │ ├── response_audio_transcript_delta_event.py │ │ │ ├── response_audio_transcript_done_event.py │ │ │ ├── response_cancel_event.py │ │ │ ├── response_cancel_event_param.py │ │ │ ├── response_content_part_added_event.py │ │ │ ├── response_content_part_done_event.py │ │ │ ├── response_create_event.py │ │ │ ├── response_create_event_param.py │ │ │ ├── response_created_event.py │ │ │ ├── response_done_event.py │ │ │ ├── response_function_call_arguments_delta_event.py │ │ │ ├── response_function_call_arguments_done_event.py │ │ │ ├── response_output_item_added_event.py │ │ │ ├── response_output_item_done_event.py │ │ │ ├── response_text_delta_event.py │ │ │ ├── response_text_done_event.py │ │ │ ├── session.py │ │ │ ├── session_create_params.py │ │ │ ├── session_create_response.py │ │ │ ├── session_created_event.py │ │ │ ├── session_update_event.py │ │ │ ├── session_update_event_param.py │ │ │ ├── session_updated_event.py │ │ │ ├── transcription_session.py │ │ │ ├── transcription_session_create_params.py │ │ │ ├── transcription_session_update.py │ │ │ ├── transcription_session_update_param.py │ │ │ └── transcription_session_updated_event.py │ │ ├── thread.py │ │ ├── thread_create_and_run_params.py │ │ ├── thread_create_params.py │ │ ├── thread_deleted.py │ │ ├── thread_update_params.py │ │ └── threads │ │ │ ├── __init__.py │ │ │ ├── annotation.py │ │ │ ├── annotation_delta.py │ │ │ ├── file_citation_annotation.py │ │ │ ├── file_citation_delta_annotation.py │ │ │ ├── file_path_annotation.py │ │ │ ├── file_path_delta_annotation.py │ │ │ ├── image_file.py │ │ │ ├── image_file_content_block.py │ │ │ ├── image_file_content_block_param.py │ │ │ ├── image_file_delta.py │ │ │ ├── image_file_delta_block.py │ │ │ ├── image_file_param.py │ │ │ ├── image_url.py │ │ │ ├── image_url_content_block.py │ │ │ ├── image_url_content_block_param.py │ │ │ ├── image_url_delta.py │ │ │ ├── image_url_delta_block.py │ │ │ ├── image_url_param.py │ │ │ ├── message.py │ │ │ ├── message_content.py │ │ │ ├── message_content_delta.py │ │ │ ├── message_content_part_param.py │ │ │ ├── message_create_params.py │ │ │ ├── message_deleted.py │ │ │ ├── message_delta.py │ │ │ ├── message_delta_event.py │ │ │ ├── message_list_params.py │ │ │ ├── message_update_params.py │ │ │ ├── refusal_content_block.py │ │ │ ├── refusal_delta_block.py │ │ │ ├── required_action_function_tool_call.py │ │ │ ├── run.py │ │ │ ├── run_create_params.py │ │ │ ├── run_list_params.py │ │ │ ├── run_status.py │ │ │ ├── run_submit_tool_outputs_params.py │ │ │ ├── run_update_params.py │ │ │ ├── runs │ │ │ ├── __init__.py │ │ │ ├── code_interpreter_logs.py │ │ │ ├── code_interpreter_output_image.py │ │ │ ├── code_interpreter_tool_call.py │ │ │ ├── code_interpreter_tool_call_delta.py │ │ │ ├── file_search_tool_call.py │ │ │ ├── file_search_tool_call_delta.py │ │ │ ├── function_tool_call.py │ │ │ ├── function_tool_call_delta.py │ │ │ ├── message_creation_step_details.py │ │ │ ├── run_step.py │ │ │ ├── run_step_delta.py │ │ │ ├── run_step_delta_event.py │ │ │ ├── run_step_delta_message_delta.py │ │ │ ├── run_step_include.py │ │ │ ├── step_list_params.py │ │ │ ├── step_retrieve_params.py │ │ │ ├── tool_call.py │ │ │ ├── tool_call_delta.py │ │ │ ├── tool_call_delta_object.py │ │ │ └── tool_calls_step_details.py │ │ │ ├── text.py │ │ │ ├── text_content_block.py │ │ │ ├── text_content_block_param.py │ │ │ ├── text_delta.py │ │ │ └── text_delta_block.py │ ├── chat │ │ ├── __init__.py │ │ ├── chat_completion.py │ │ ├── chat_completion_allowed_tool_choice_param.py │ │ ├── chat_completion_allowed_tools_param.py │ │ ├── chat_completion_assistant_message_param.py │ │ ├── chat_completion_audio.py │ │ ├── chat_completion_audio_param.py │ │ ├── chat_completion_chunk.py │ │ ├── chat_completion_content_part_image.py │ │ ├── chat_completion_content_part_image_param.py │ │ ├── chat_completion_content_part_input_audio_param.py │ │ ├── chat_completion_content_part_param.py │ │ ├── chat_completion_content_part_refusal_param.py │ │ ├── chat_completion_content_part_text.py │ │ ├── chat_completion_content_part_text_param.py │ │ ├── chat_completion_custom_tool_param.py │ │ ├── chat_completion_deleted.py │ │ ├── chat_completion_developer_message_param.py │ │ ├── chat_completion_function_call_option_param.py │ │ ├── chat_completion_function_message_param.py │ │ ├── chat_completion_function_tool.py │ │ ├── chat_completion_function_tool_param.py │ │ ├── chat_completion_message.py │ │ ├── chat_completion_message_custom_tool_call.py │ │ ├── chat_completion_message_custom_tool_call_param.py │ │ ├── chat_completion_message_function_tool_call.py │ │ ├── chat_completion_message_function_tool_call_param.py │ │ ├── chat_completion_message_param.py │ │ ├── chat_completion_message_tool_call.py │ │ ├── chat_completion_message_tool_call_param.py │ │ ├── chat_completion_message_tool_call_union_param.py │ │ ├── chat_completion_modality.py │ │ ├── chat_completion_named_tool_choice_custom_param.py │ │ ├── chat_completion_named_tool_choice_param.py │ │ ├── chat_completion_prediction_content_param.py │ │ ├── chat_completion_reasoning_effort.py │ │ ├── chat_completion_role.py │ │ ├── chat_completion_store_message.py │ │ ├── chat_completion_stream_options_param.py │ │ ├── chat_completion_system_message_param.py │ │ ├── chat_completion_token_logprob.py │ │ ├── chat_completion_tool_choice_option_param.py │ │ ├── chat_completion_tool_message_param.py │ │ ├── chat_completion_tool_param.py │ │ ├── chat_completion_tool_union_param.py │ │ ├── chat_completion_user_message_param.py │ │ ├── completion_create_params.py │ │ ├── completion_list_params.py │ │ ├── completion_update_params.py │ │ ├── completions │ │ │ ├── __init__.py │ │ │ └── message_list_params.py │ │ ├── parsed_chat_completion.py │ │ └── parsed_function_tool_call.py │ ├── chat_model.py │ ├── completion.py │ ├── completion_choice.py │ ├── completion_create_params.py │ ├── completion_usage.py │ ├── container_create_params.py │ ├── container_create_response.py │ ├── container_list_params.py │ ├── container_list_response.py │ ├── container_retrieve_response.py │ ├── containers │ │ ├── __init__.py │ │ ├── file_create_params.py │ │ ├── file_create_response.py │ │ ├── file_list_params.py │ │ ├── file_list_response.py │ │ ├── file_retrieve_response.py │ │ └── files │ │ │ └── __init__.py │ ├── conversations │ │ ├── __init__.py │ │ ├── computer_screenshot_content.py │ │ ├── conversation.py │ │ ├── conversation_create_params.py │ │ ├── conversation_deleted_resource.py │ │ ├── conversation_item.py │ │ ├── conversation_item_list.py │ │ ├── conversation_update_params.py │ │ ├── input_file_content.py │ │ ├── input_file_content_param.py │ │ ├── input_image_content.py │ │ ├── input_image_content_param.py │ │ ├── input_text_content.py │ │ ├── input_text_content_param.py │ │ ├── item_create_params.py │ │ ├── item_list_params.py │ │ ├── item_retrieve_params.py │ │ ├── message.py │ │ ├── output_text_content.py │ │ ├── output_text_content_param.py │ │ ├── refusal_content.py │ │ ├── refusal_content_param.py │ │ ├── summary_text_content.py │ │ └── text_content.py │ ├── create_embedding_response.py │ ├── embedding.py │ ├── embedding_create_params.py │ ├── embedding_model.py │ ├── eval_create_params.py │ ├── eval_create_response.py │ ├── eval_custom_data_source_config.py │ ├── eval_delete_response.py │ ├── eval_list_params.py │ ├── eval_list_response.py │ ├── eval_retrieve_response.py │ ├── eval_stored_completions_data_source_config.py │ ├── eval_update_params.py │ ├── eval_update_response.py │ ├── evals │ │ ├── __init__.py │ │ ├── create_eval_completions_run_data_source.py │ │ ├── create_eval_completions_run_data_source_param.py │ │ ├── create_eval_jsonl_run_data_source.py │ │ ├── create_eval_jsonl_run_data_source_param.py │ │ ├── eval_api_error.py │ │ ├── run_cancel_response.py │ │ ├── run_create_params.py │ │ ├── run_create_response.py │ │ ├── run_delete_response.py │ │ ├── run_list_params.py │ │ ├── run_list_response.py │ │ ├── run_retrieve_response.py │ │ └── runs │ │ │ ├── __init__.py │ │ │ ├── output_item_list_params.py │ │ │ ├── output_item_list_response.py │ │ │ └── output_item_retrieve_response.py │ ├── file_chunking_strategy.py │ ├── file_chunking_strategy_param.py │ ├── file_content.py │ ├── file_create_params.py │ ├── file_deleted.py │ ├── file_list_params.py │ ├── file_object.py │ ├── file_purpose.py │ ├── fine_tuning │ │ ├── __init__.py │ │ ├── alpha │ │ │ ├── __init__.py │ │ │ ├── grader_run_params.py │ │ │ ├── grader_run_response.py │ │ │ ├── grader_validate_params.py │ │ │ └── grader_validate_response.py │ │ ├── checkpoints │ │ │ ├── __init__.py │ │ │ ├── permission_create_params.py │ │ │ ├── permission_create_response.py │ │ │ ├── permission_delete_response.py │ │ │ ├── permission_retrieve_params.py │ │ │ └── permission_retrieve_response.py │ │ ├── dpo_hyperparameters.py │ │ ├── dpo_hyperparameters_param.py │ │ ├── dpo_method.py │ │ ├── dpo_method_param.py │ │ ├── fine_tuning_job.py │ │ ├── fine_tuning_job_event.py │ │ ├── fine_tuning_job_integration.py │ │ ├── fine_tuning_job_wandb_integration.py │ │ ├── fine_tuning_job_wandb_integration_object.py │ │ ├── job_create_params.py │ │ ├── job_list_events_params.py │ │ ├── job_list_params.py │ │ ├── jobs │ │ │ ├── __init__.py │ │ │ ├── checkpoint_list_params.py │ │ │ └── fine_tuning_job_checkpoint.py │ │ ├── reinforcement_hyperparameters.py │ │ ├── reinforcement_hyperparameters_param.py │ │ ├── reinforcement_method.py │ │ ├── reinforcement_method_param.py │ │ ├── supervised_hyperparameters.py │ │ ├── supervised_hyperparameters_param.py │ │ ├── supervised_method.py │ │ └── supervised_method_param.py │ ├── graders │ │ ├── __init__.py │ │ ├── label_model_grader.py │ │ ├── label_model_grader_param.py │ │ ├── multi_grader.py │ │ ├── multi_grader_param.py │ │ ├── python_grader.py │ │ ├── python_grader_param.py │ │ ├── score_model_grader.py │ │ ├── score_model_grader_param.py │ │ ├── string_check_grader.py │ │ ├── string_check_grader_param.py │ │ ├── text_similarity_grader.py │ │ └── text_similarity_grader_param.py │ ├── image.py │ ├── image_create_variation_params.py │ ├── image_edit_completed_event.py │ ├── image_edit_params.py │ ├── image_edit_partial_image_event.py │ ├── image_edit_stream_event.py │ ├── image_gen_completed_event.py │ ├── image_gen_partial_image_event.py │ ├── image_gen_stream_event.py │ ├── image_generate_params.py │ ├── image_model.py │ ├── images_response.py │ ├── model.py │ ├── model_deleted.py │ ├── moderation.py │ ├── moderation_create_params.py │ ├── moderation_create_response.py │ ├── moderation_image_url_input_param.py │ ├── moderation_model.py │ ├── moderation_multi_modal_input_param.py │ ├── moderation_text_input_param.py │ ├── other_file_chunking_strategy_object.py │ ├── realtime │ │ ├── __init__.py │ │ ├── audio_transcription.py │ │ ├── audio_transcription_param.py │ │ ├── call_accept_params.py │ │ ├── call_create_params.py │ │ ├── call_refer_params.py │ │ ├── call_reject_params.py │ │ ├── client_secret_create_params.py │ │ ├── client_secret_create_response.py │ │ ├── conversation_created_event.py │ │ ├── conversation_item.py │ │ ├── conversation_item_added.py │ │ ├── conversation_item_create_event.py │ │ ├── conversation_item_create_event_param.py │ │ ├── conversation_item_created_event.py │ │ ├── conversation_item_delete_event.py │ │ ├── conversation_item_delete_event_param.py │ │ ├── conversation_item_deleted_event.py │ │ ├── conversation_item_done.py │ │ ├── conversation_item_input_audio_transcription_completed_event.py │ │ ├── conversation_item_input_audio_transcription_delta_event.py │ │ ├── conversation_item_input_audio_transcription_failed_event.py │ │ ├── conversation_item_input_audio_transcription_segment.py │ │ ├── conversation_item_param.py │ │ ├── conversation_item_retrieve_event.py │ │ ├── conversation_item_retrieve_event_param.py │ │ ├── conversation_item_truncate_event.py │ │ ├── conversation_item_truncate_event_param.py │ │ ├── conversation_item_truncated_event.py │ │ ├── input_audio_buffer_append_event.py │ │ ├── input_audio_buffer_append_event_param.py │ │ ├── input_audio_buffer_clear_event.py │ │ ├── input_audio_buffer_clear_event_param.py │ │ ├── input_audio_buffer_cleared_event.py │ │ ├── input_audio_buffer_commit_event.py │ │ ├── input_audio_buffer_commit_event_param.py │ │ ├── input_audio_buffer_committed_event.py │ │ ├── input_audio_buffer_dtmf_event_received_event.py │ │ ├── input_audio_buffer_speech_started_event.py │ │ ├── input_audio_buffer_speech_stopped_event.py │ │ ├── input_audio_buffer_timeout_triggered.py │ │ ├── log_prob_properties.py │ │ ├── mcp_list_tools_completed.py │ │ ├── mcp_list_tools_failed.py │ │ ├── mcp_list_tools_in_progress.py │ │ ├── noise_reduction_type.py │ │ ├── output_audio_buffer_clear_event.py │ │ ├── output_audio_buffer_clear_event_param.py │ │ ├── rate_limits_updated_event.py │ │ ├── realtime_audio_config.py │ │ ├── realtime_audio_config_input.py │ │ ├── realtime_audio_config_input_param.py │ │ ├── realtime_audio_config_output.py │ │ ├── realtime_audio_config_output_param.py │ │ ├── realtime_audio_config_param.py │ │ ├── realtime_audio_formats.py │ │ ├── realtime_audio_formats_param.py │ │ ├── realtime_audio_input_turn_detection.py │ │ ├── realtime_audio_input_turn_detection_param.py │ │ ├── realtime_client_event.py │ │ ├── realtime_client_event_param.py │ │ ├── realtime_connect_params.py │ │ ├── realtime_conversation_item_assistant_message.py │ │ ├── realtime_conversation_item_assistant_message_param.py │ │ ├── realtime_conversation_item_function_call.py │ │ ├── realtime_conversation_item_function_call_output.py │ │ ├── realtime_conversation_item_function_call_output_param.py │ │ ├── realtime_conversation_item_function_call_param.py │ │ ├── realtime_conversation_item_system_message.py │ │ ├── realtime_conversation_item_system_message_param.py │ │ ├── realtime_conversation_item_user_message.py │ │ ├── realtime_conversation_item_user_message_param.py │ │ ├── realtime_error.py │ │ ├── realtime_error_event.py │ │ ├── realtime_function_tool.py │ │ ├── realtime_function_tool_param.py │ │ ├── realtime_mcp_approval_request.py │ │ ├── realtime_mcp_approval_request_param.py │ │ ├── realtime_mcp_approval_response.py │ │ ├── realtime_mcp_approval_response_param.py │ │ ├── realtime_mcp_list_tools.py │ │ ├── realtime_mcp_list_tools_param.py │ │ ├── realtime_mcp_protocol_error.py │ │ ├── realtime_mcp_protocol_error_param.py │ │ ├── realtime_mcp_tool_call.py │ │ ├── realtime_mcp_tool_call_param.py │ │ ├── realtime_mcp_tool_execution_error.py │ │ ├── realtime_mcp_tool_execution_error_param.py │ │ ├── realtime_mcphttp_error.py │ │ ├── realtime_mcphttp_error_param.py │ │ ├── realtime_response.py │ │ ├── realtime_response_create_audio_output.py │ │ ├── realtime_response_create_audio_output_param.py │ │ ├── realtime_response_create_mcp_tool.py │ │ ├── realtime_response_create_mcp_tool_param.py │ │ ├── realtime_response_create_params.py │ │ ├── realtime_response_create_params_param.py │ │ ├── realtime_response_status.py │ │ ├── realtime_response_usage.py │ │ ├── realtime_response_usage_input_token_details.py │ │ ├── realtime_response_usage_output_token_details.py │ │ ├── realtime_server_event.py │ │ ├── realtime_session_client_secret.py │ │ ├── realtime_session_create_request.py │ │ ├── realtime_session_create_request_param.py │ │ ├── realtime_session_create_response.py │ │ ├── realtime_tool_choice_config.py │ │ ├── realtime_tool_choice_config_param.py │ │ ├── realtime_tools_config.py │ │ ├── realtime_tools_config_param.py │ │ ├── realtime_tools_config_union.py │ │ ├── realtime_tools_config_union_param.py │ │ ├── realtime_tracing_config.py │ │ ├── realtime_tracing_config_param.py │ │ ├── realtime_transcription_session_audio.py │ │ ├── realtime_transcription_session_audio_input.py │ │ ├── realtime_transcription_session_audio_input_param.py │ │ ├── realtime_transcription_session_audio_input_turn_detection.py │ │ ├── realtime_transcription_session_audio_input_turn_detection_param.py │ │ ├── realtime_transcription_session_audio_param.py │ │ ├── realtime_transcription_session_create_request.py │ │ ├── realtime_transcription_session_create_request_param.py │ │ ├── realtime_transcription_session_create_response.py │ │ ├── realtime_transcription_session_turn_detection.py │ │ ├── realtime_truncation.py │ │ ├── realtime_truncation_param.py │ │ ├── realtime_truncation_retention_ratio.py │ │ ├── realtime_truncation_retention_ratio_param.py │ │ ├── response_audio_delta_event.py │ │ ├── response_audio_done_event.py │ │ ├── response_audio_transcript_delta_event.py │ │ ├── response_audio_transcript_done_event.py │ │ ├── response_cancel_event.py │ │ ├── response_cancel_event_param.py │ │ ├── response_content_part_added_event.py │ │ ├── response_content_part_done_event.py │ │ ├── response_create_event.py │ │ ├── response_create_event_param.py │ │ ├── response_created_event.py │ │ ├── response_done_event.py │ │ ├── response_function_call_arguments_delta_event.py │ │ ├── response_function_call_arguments_done_event.py │ │ ├── response_mcp_call_arguments_delta.py │ │ ├── response_mcp_call_arguments_done.py │ │ ├── response_mcp_call_completed.py │ │ ├── response_mcp_call_failed.py │ │ ├── response_mcp_call_in_progress.py │ │ ├── response_output_item_added_event.py │ │ ├── response_output_item_done_event.py │ │ ├── response_text_delta_event.py │ │ ├── response_text_done_event.py │ │ ├── session_created_event.py │ │ ├── session_update_event.py │ │ ├── session_update_event_param.py │ │ └── session_updated_event.py │ ├── responses │ │ ├── __init__.py │ │ ├── apply_patch_tool.py │ │ ├── apply_patch_tool_param.py │ │ ├── compacted_response.py │ │ ├── computer_tool.py │ │ ├── computer_tool_param.py │ │ ├── custom_tool.py │ │ ├── custom_tool_param.py │ │ ├── easy_input_message.py │ │ ├── easy_input_message_param.py │ │ ├── file_search_tool.py │ │ ├── file_search_tool_param.py │ │ ├── function_shell_tool.py │ │ ├── function_shell_tool_param.py │ │ ├── function_tool.py │ │ ├── function_tool_param.py │ │ ├── input_item_list_params.py │ │ ├── input_token_count_params.py │ │ ├── input_token_count_response.py │ │ ├── parsed_response.py │ │ ├── response.py │ │ ├── response_apply_patch_tool_call.py │ │ ├── response_apply_patch_tool_call_output.py │ │ ├── response_audio_delta_event.py │ │ ├── response_audio_done_event.py │ │ ├── response_audio_transcript_delta_event.py │ │ ├── response_audio_transcript_done_event.py │ │ ├── response_code_interpreter_call_code_delta_event.py │ │ ├── response_code_interpreter_call_code_done_event.py │ │ ├── response_code_interpreter_call_completed_event.py │ │ ├── response_code_interpreter_call_in_progress_event.py │ │ ├── response_code_interpreter_call_interpreting_event.py │ │ ├── response_code_interpreter_tool_call.py │ │ ├── response_code_interpreter_tool_call_param.py │ │ ├── response_compact_params.py │ │ ├── response_compaction_item.py │ │ ├── response_compaction_item_param.py │ │ ├── response_compaction_item_param_param.py │ │ ├── response_completed_event.py │ │ ├── response_computer_tool_call.py │ │ ├── response_computer_tool_call_output_item.py │ │ ├── response_computer_tool_call_output_screenshot.py │ │ ├── response_computer_tool_call_output_screenshot_param.py │ │ ├── response_computer_tool_call_param.py │ │ ├── response_content_part_added_event.py │ │ ├── response_content_part_done_event.py │ │ ├── response_conversation_param.py │ │ ├── response_create_params.py │ │ ├── response_created_event.py │ │ ├── response_custom_tool_call.py │ │ ├── response_custom_tool_call_input_delta_event.py │ │ ├── response_custom_tool_call_input_done_event.py │ │ ├── response_custom_tool_call_output.py │ │ ├── response_custom_tool_call_output_param.py │ │ ├── response_custom_tool_call_param.py │ │ ├── response_error.py │ │ ├── response_error_event.py │ │ ├── response_failed_event.py │ │ ├── response_file_search_call_completed_event.py │ │ ├── response_file_search_call_in_progress_event.py │ │ ├── response_file_search_call_searching_event.py │ │ ├── response_file_search_tool_call.py │ │ ├── response_file_search_tool_call_param.py │ │ ├── response_format_text_config.py │ │ ├── response_format_text_config_param.py │ │ ├── response_format_text_json_schema_config.py │ │ ├── response_format_text_json_schema_config_param.py │ │ ├── response_function_call_arguments_delta_event.py │ │ ├── response_function_call_arguments_done_event.py │ │ ├── response_function_call_output_item.py │ │ ├── response_function_call_output_item_list.py │ │ ├── response_function_call_output_item_list_param.py │ │ ├── response_function_call_output_item_param.py │ │ ├── response_function_shell_call_output_content.py │ │ ├── response_function_shell_call_output_content_param.py │ │ ├── response_function_shell_tool_call.py │ │ ├── response_function_shell_tool_call_output.py │ │ ├── response_function_tool_call.py │ │ ├── response_function_tool_call_item.py │ │ ├── response_function_tool_call_output_item.py │ │ ├── response_function_tool_call_param.py │ │ ├── response_function_web_search.py │ │ ├── response_function_web_search_param.py │ │ ├── response_image_gen_call_completed_event.py │ │ ├── response_image_gen_call_generating_event.py │ │ ├── response_image_gen_call_in_progress_event.py │ │ ├── response_image_gen_call_partial_image_event.py │ │ ├── response_in_progress_event.py │ │ ├── response_includable.py │ │ ├── response_incomplete_event.py │ │ ├── response_input_audio.py │ │ ├── response_input_audio_param.py │ │ ├── response_input_content.py │ │ ├── response_input_content_param.py │ │ ├── response_input_file.py │ │ ├── response_input_file_content.py │ │ ├── response_input_file_content_param.py │ │ ├── response_input_file_param.py │ │ ├── response_input_image.py │ │ ├── response_input_image_content.py │ │ ├── response_input_image_content_param.py │ │ ├── response_input_image_param.py │ │ ├── response_input_item.py │ │ ├── response_input_item_param.py │ │ ├── response_input_message_content_list.py │ │ ├── response_input_message_content_list_param.py │ │ ├── response_input_message_item.py │ │ ├── response_input_param.py │ │ ├── response_input_text.py │ │ ├── response_input_text_content.py │ │ ├── response_input_text_content_param.py │ │ ├── response_input_text_param.py │ │ ├── response_item.py │ │ ├── response_item_list.py │ │ ├── response_mcp_call_arguments_delta_event.py │ │ ├── response_mcp_call_arguments_done_event.py │ │ ├── response_mcp_call_completed_event.py │ │ ├── response_mcp_call_failed_event.py │ │ ├── response_mcp_call_in_progress_event.py │ │ ├── response_mcp_list_tools_completed_event.py │ │ ├── response_mcp_list_tools_failed_event.py │ │ ├── response_mcp_list_tools_in_progress_event.py │ │ ├── response_output_item.py │ │ ├── response_output_item_added_event.py │ │ ├── response_output_item_done_event.py │ │ ├── response_output_message.py │ │ ├── response_output_message_param.py │ │ ├── response_output_refusal.py │ │ ├── response_output_refusal_param.py │ │ ├── response_output_text.py │ │ ├── response_output_text_annotation_added_event.py │ │ ├── response_output_text_param.py │ │ ├── response_prompt.py │ │ ├── response_prompt_param.py │ │ ├── response_queued_event.py │ │ ├── response_reasoning_item.py │ │ ├── response_reasoning_item_param.py │ │ ├── response_reasoning_summary_part_added_event.py │ │ ├── response_reasoning_summary_part_done_event.py │ │ ├── response_reasoning_summary_text_delta_event.py │ │ ├── response_reasoning_summary_text_done_event.py │ │ ├── response_reasoning_text_delta_event.py │ │ ├── response_reasoning_text_done_event.py │ │ ├── response_refusal_delta_event.py │ │ ├── response_refusal_done_event.py │ │ ├── response_retrieve_params.py │ │ ├── response_status.py │ │ ├── response_stream_event.py │ │ ├── response_text_config.py │ │ ├── response_text_config_param.py │ │ ├── response_text_delta_event.py │ │ ├── response_text_done_event.py │ │ ├── response_usage.py │ │ ├── response_web_search_call_completed_event.py │ │ ├── response_web_search_call_in_progress_event.py │ │ ├── response_web_search_call_searching_event.py │ │ ├── tool.py │ │ ├── tool_choice_allowed.py │ │ ├── tool_choice_allowed_param.py │ │ ├── tool_choice_apply_patch.py │ │ ├── tool_choice_apply_patch_param.py │ │ ├── tool_choice_custom.py │ │ ├── tool_choice_custom_param.py │ │ ├── tool_choice_function.py │ │ ├── tool_choice_function_param.py │ │ ├── tool_choice_mcp.py │ │ ├── tool_choice_mcp_param.py │ │ ├── tool_choice_options.py │ │ ├── tool_choice_shell.py │ │ ├── tool_choice_shell_param.py │ │ ├── tool_choice_types.py │ │ ├── tool_choice_types_param.py │ │ ├── tool_param.py │ │ ├── web_search_preview_tool.py │ │ ├── web_search_preview_tool_param.py │ │ ├── web_search_tool.py │ │ └── web_search_tool_param.py │ ├── shared │ │ ├── __init__.py │ │ ├── all_models.py │ │ ├── chat_model.py │ │ ├── comparison_filter.py │ │ ├── compound_filter.py │ │ ├── custom_tool_input_format.py │ │ ├── error_object.py │ │ ├── function_definition.py │ │ ├── function_parameters.py │ │ ├── metadata.py │ │ ├── reasoning.py │ │ ├── reasoning_effort.py │ │ ├── response_format_json_object.py │ │ ├── response_format_json_schema.py │ │ ├── response_format_text.py │ │ ├── response_format_text_grammar.py │ │ ├── response_format_text_python.py │ │ └── responses_model.py │ ├── shared_params │ │ ├── __init__.py │ │ ├── chat_model.py │ │ ├── comparison_filter.py │ │ ├── compound_filter.py │ │ ├── custom_tool_input_format.py │ │ ├── function_definition.py │ │ ├── function_parameters.py │ │ ├── metadata.py │ │ ├── reasoning.py │ │ ├── reasoning_effort.py │ │ ├── response_format_json_object.py │ │ ├── response_format_json_schema.py │ │ ├── response_format_text.py │ │ └── responses_model.py │ ├── static_file_chunking_strategy.py │ ├── static_file_chunking_strategy_object.py │ ├── static_file_chunking_strategy_object_param.py │ ├── static_file_chunking_strategy_param.py │ ├── upload.py │ ├── upload_complete_params.py │ ├── upload_create_params.py │ ├── uploads │ │ ├── __init__.py │ │ ├── part_create_params.py │ │ └── upload_part.py │ ├── vector_store.py │ ├── vector_store_create_params.py │ ├── vector_store_deleted.py │ ├── vector_store_list_params.py │ ├── vector_store_search_params.py │ ├── vector_store_search_response.py │ ├── vector_store_update_params.py │ ├── vector_stores │ │ ├── __init__.py │ │ ├── file_batch_create_params.py │ │ ├── file_batch_list_files_params.py │ │ ├── file_content_response.py │ │ ├── file_create_params.py │ │ ├── file_list_params.py │ │ ├── file_update_params.py │ │ ├── vector_store_file.py │ │ ├── vector_store_file_batch.py │ │ └── vector_store_file_deleted.py │ ├── video.py │ ├── video_create_error.py │ ├── video_create_params.py │ ├── video_delete_response.py │ ├── video_download_content_params.py │ ├── video_list_params.py │ ├── video_model.py │ ├── video_remix_params.py │ ├── video_seconds.py │ ├── video_size.py │ ├── webhooks │ │ ├── __init__.py │ │ ├── batch_cancelled_webhook_event.py │ │ ├── batch_completed_webhook_event.py │ │ ├── batch_expired_webhook_event.py │ │ ├── batch_failed_webhook_event.py │ │ ├── eval_run_canceled_webhook_event.py │ │ ├── eval_run_failed_webhook_event.py │ │ ├── eval_run_succeeded_webhook_event.py │ │ ├── fine_tuning_job_cancelled_webhook_event.py │ │ ├── fine_tuning_job_failed_webhook_event.py │ │ ├── fine_tuning_job_succeeded_webhook_event.py │ │ ├── realtime_call_incoming_webhook_event.py │ │ ├── response_cancelled_webhook_event.py │ │ ├── response_completed_webhook_event.py │ │ ├── response_failed_webhook_event.py │ │ ├── response_incomplete_webhook_event.py │ │ └── unwrap_webhook_event.py │ └── websocket_connection_options.py │ └── version.py └── tests ├── __init__.py ├── api_resources ├── __init__.py ├── audio │ ├── __init__.py │ ├── test_speech.py │ ├── test_transcriptions.py │ └── test_translations.py ├── beta │ ├── __init__.py │ ├── chatkit │ │ ├── __init__.py │ │ ├── test_sessions.py │ │ └── test_threads.py │ ├── test_assistants.py │ ├── test_realtime.py │ ├── test_threads.py │ └── threads │ │ ├── __init__.py │ │ ├── runs │ │ ├── __init__.py │ │ └── test_steps.py │ │ ├── test_messages.py │ │ └── test_runs.py ├── chat │ ├── __init__.py │ ├── completions │ │ ├── __init__.py │ │ └── test_messages.py │ └── test_completions.py ├── containers │ ├── __init__.py │ ├── files │ │ ├── __init__.py │ │ └── test_content.py │ └── test_files.py ├── conversations │ ├── __init__.py │ └── test_items.py ├── evals │ ├── __init__.py │ ├── runs │ │ ├── __init__.py │ │ └── test_output_items.py │ └── test_runs.py ├── fine_tuning │ ├── __init__.py │ ├── alpha │ │ ├── __init__.py │ │ └── test_graders.py │ ├── checkpoints │ │ ├── __init__.py │ │ └── test_permissions.py │ ├── jobs │ │ ├── __init__.py │ │ └── test_checkpoints.py │ └── test_jobs.py ├── realtime │ ├── __init__.py │ ├── test_calls.py │ └── test_client_secrets.py ├── responses │ ├── __init__.py │ ├── test_input_items.py │ └── test_input_tokens.py ├── test_batches.py ├── test_completions.py ├── test_containers.py ├── test_conversations.py ├── test_embeddings.py ├── test_evals.py ├── test_files.py ├── test_images.py ├── test_models.py ├── test_moderations.py ├── test_realtime.py ├── test_responses.py ├── test_uploads.py ├── test_vector_stores.py ├── test_videos.py ├── test_webhooks.py ├── uploads │ ├── __init__.py │ └── test_parts.py └── vector_stores │ ├── __init__.py │ ├── test_file_batches.py │ └── test_files.py ├── compat └── test_tool_param.py ├── conftest.py ├── lib ├── __init__.py ├── chat │ ├── __init__.py │ ├── test_completions.py │ └── test_completions_streaming.py ├── responses │ ├── __init__.py │ └── test_responses.py ├── schema_types │ └── query.py ├── snapshots.py ├── test_assistants.py ├── test_audio.py ├── test_azure.py ├── test_old_api.py ├── test_pydantic.py └── utils.py ├── sample_file.txt ├── test_client.py ├── test_deepcopy.py ├── test_extract_files.py ├── test_files.py ├── test_legacy_response.py ├── test_models.py ├── test_module_client.py ├── test_qs.py ├── test_required_args.py ├── test_response.py ├── test_streaming.py ├── test_transform.py ├── test_utils ├── test_datetime_parse.py ├── test_logging.py ├── test_proxy.py └── test_typing.py └── utils.py /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/create-releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/.github/workflows/create-releases.yml -------------------------------------------------------------------------------- /.github/workflows/detect-breaking-changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/.github/workflows/detect-breaking-changes.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/.github/workflows/publish-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/release-doctor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/.github/workflows/release-doctor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.inline-snapshot/external/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/.inline-snapshot/external/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.9.18 2 | -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "2.10.0" 3 | } -------------------------------------------------------------------------------- /.stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/.stats.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.analysis.importFormat": "relative", 3 | } 4 | -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- 1 | brew "rye" 2 | 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/SECURITY.md -------------------------------------------------------------------------------- /api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/api.md -------------------------------------------------------------------------------- /bin/check-release-environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/bin/check-release-environment -------------------------------------------------------------------------------- /bin/publish-pypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/bin/publish-pypi -------------------------------------------------------------------------------- /examples/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/.keep -------------------------------------------------------------------------------- /examples/async_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/async_demo.py -------------------------------------------------------------------------------- /examples/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/audio.py -------------------------------------------------------------------------------- /examples/azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/azure.py -------------------------------------------------------------------------------- /examples/azure_ad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/azure_ad.py -------------------------------------------------------------------------------- /examples/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/demo.py -------------------------------------------------------------------------------- /examples/generate_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/generate_file.sh -------------------------------------------------------------------------------- /examples/image_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/image_stream.py -------------------------------------------------------------------------------- /examples/module_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/module_client.py -------------------------------------------------------------------------------- /examples/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/parsing.py -------------------------------------------------------------------------------- /examples/parsing_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/parsing_stream.py -------------------------------------------------------------------------------- /examples/parsing_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/parsing_tools.py -------------------------------------------------------------------------------- /examples/parsing_tools_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/parsing_tools_stream.py -------------------------------------------------------------------------------- /examples/picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/picture.py -------------------------------------------------------------------------------- /examples/realtime/audio_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/realtime/audio_util.py -------------------------------------------------------------------------------- /examples/realtime/azure_realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/realtime/azure_realtime.py -------------------------------------------------------------------------------- /examples/realtime/push_to_talk_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/realtime/push_to_talk_app.py -------------------------------------------------------------------------------- /examples/realtime/realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/realtime/realtime.py -------------------------------------------------------------------------------- /examples/responses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/responses/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/responses/background.py -------------------------------------------------------------------------------- /examples/responses/background_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/responses/background_async.py -------------------------------------------------------------------------------- /examples/responses/background_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/responses/background_streaming.py -------------------------------------------------------------------------------- /examples/responses/background_streaming_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/responses/background_streaming_async.py -------------------------------------------------------------------------------- /examples/responses/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/responses/streaming.py -------------------------------------------------------------------------------- /examples/responses/streaming_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/responses/streaming_tools.py -------------------------------------------------------------------------------- /examples/responses/structured_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/responses/structured_outputs.py -------------------------------------------------------------------------------- /examples/responses/structured_outputs_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/responses/structured_outputs_tools.py -------------------------------------------------------------------------------- /examples/responses_input_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/responses_input_tokens.py -------------------------------------------------------------------------------- /examples/speech_to_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/speech_to_text.py -------------------------------------------------------------------------------- /examples/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/streaming.py -------------------------------------------------------------------------------- /examples/text_to_speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/text_to_speech.py -------------------------------------------------------------------------------- /examples/uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/uploads.py -------------------------------------------------------------------------------- /examples/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/examples/video.py -------------------------------------------------------------------------------- /helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/helpers.md -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/release-please-config.json -------------------------------------------------------------------------------- /requirements-dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/requirements-dev.lock -------------------------------------------------------------------------------- /requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/requirements.lock -------------------------------------------------------------------------------- /scripts/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/scripts/bootstrap -------------------------------------------------------------------------------- /scripts/detect-breaking-changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/scripts/detect-breaking-changes -------------------------------------------------------------------------------- /scripts/detect-breaking-changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/scripts/detect-breaking-changes.py -------------------------------------------------------------------------------- /scripts/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/scripts/format -------------------------------------------------------------------------------- /scripts/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/scripts/lint -------------------------------------------------------------------------------- /scripts/mock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/scripts/mock -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/scripts/test -------------------------------------------------------------------------------- /scripts/utils/ruffen-docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/scripts/utils/ruffen-docs.py -------------------------------------------------------------------------------- /scripts/utils/upload-artifact.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/scripts/utils/upload-artifact.sh -------------------------------------------------------------------------------- /src/openai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/__init__.py -------------------------------------------------------------------------------- /src/openai/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/__main__.py -------------------------------------------------------------------------------- /src/openai/_base_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_base_client.py -------------------------------------------------------------------------------- /src/openai/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_client.py -------------------------------------------------------------------------------- /src/openai/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_compat.py -------------------------------------------------------------------------------- /src/openai/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_constants.py -------------------------------------------------------------------------------- /src/openai/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_exceptions.py -------------------------------------------------------------------------------- /src/openai/_extras/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_extras/__init__.py -------------------------------------------------------------------------------- /src/openai/_extras/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_extras/_common.py -------------------------------------------------------------------------------- /src/openai/_extras/numpy_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_extras/numpy_proxy.py -------------------------------------------------------------------------------- /src/openai/_extras/pandas_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_extras/pandas_proxy.py -------------------------------------------------------------------------------- /src/openai/_extras/sounddevice_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_extras/sounddevice_proxy.py -------------------------------------------------------------------------------- /src/openai/_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_files.py -------------------------------------------------------------------------------- /src/openai/_legacy_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_legacy_response.py -------------------------------------------------------------------------------- /src/openai/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_models.py -------------------------------------------------------------------------------- /src/openai/_module_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_module_client.py -------------------------------------------------------------------------------- /src/openai/_qs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_qs.py -------------------------------------------------------------------------------- /src/openai/_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_resource.py -------------------------------------------------------------------------------- /src/openai/_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_response.py -------------------------------------------------------------------------------- /src/openai/_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_streaming.py -------------------------------------------------------------------------------- /src/openai/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_types.py -------------------------------------------------------------------------------- /src/openai/_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_utils/__init__.py -------------------------------------------------------------------------------- /src/openai/_utils/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_utils/_compat.py -------------------------------------------------------------------------------- /src/openai/_utils/_datetime_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_utils/_datetime_parse.py -------------------------------------------------------------------------------- /src/openai/_utils/_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_utils/_logs.py -------------------------------------------------------------------------------- /src/openai/_utils/_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_utils/_proxy.py -------------------------------------------------------------------------------- /src/openai/_utils/_reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_utils/_reflection.py -------------------------------------------------------------------------------- /src/openai/_utils/_resources_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_utils/_resources_proxy.py -------------------------------------------------------------------------------- /src/openai/_utils/_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_utils/_streams.py -------------------------------------------------------------------------------- /src/openai/_utils/_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_utils/_sync.py -------------------------------------------------------------------------------- /src/openai/_utils/_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_utils/_transform.py -------------------------------------------------------------------------------- /src/openai/_utils/_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_utils/_typing.py -------------------------------------------------------------------------------- /src/openai/_utils/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_utils/_utils.py -------------------------------------------------------------------------------- /src/openai/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/_version.py -------------------------------------------------------------------------------- /src/openai/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/__init__.py -------------------------------------------------------------------------------- /src/openai/cli/_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_api/__init__.py -------------------------------------------------------------------------------- /src/openai/cli/_api/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_api/_main.py -------------------------------------------------------------------------------- /src/openai/cli/_api/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_api/audio.py -------------------------------------------------------------------------------- /src/openai/cli/_api/chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_api/chat/__init__.py -------------------------------------------------------------------------------- /src/openai/cli/_api/chat/completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_api/chat/completions.py -------------------------------------------------------------------------------- /src/openai/cli/_api/completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_api/completions.py -------------------------------------------------------------------------------- /src/openai/cli/_api/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_api/files.py -------------------------------------------------------------------------------- /src/openai/cli/_api/fine_tuning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_api/fine_tuning/__init__.py -------------------------------------------------------------------------------- /src/openai/cli/_api/fine_tuning/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_api/fine_tuning/jobs.py -------------------------------------------------------------------------------- /src/openai/cli/_api/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_api/image.py -------------------------------------------------------------------------------- /src/openai/cli/_api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_api/models.py -------------------------------------------------------------------------------- /src/openai/cli/_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_cli.py -------------------------------------------------------------------------------- /src/openai/cli/_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_errors.py -------------------------------------------------------------------------------- /src/openai/cli/_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_models.py -------------------------------------------------------------------------------- /src/openai/cli/_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_progress.py -------------------------------------------------------------------------------- /src/openai/cli/_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_tools/__init__.py -------------------------------------------------------------------------------- /src/openai/cli/_tools/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_tools/_main.py -------------------------------------------------------------------------------- /src/openai/cli/_tools/fine_tunes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_tools/fine_tunes.py -------------------------------------------------------------------------------- /src/openai/cli/_tools/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_tools/migrate.py -------------------------------------------------------------------------------- /src/openai/cli/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/cli/_utils.py -------------------------------------------------------------------------------- /src/openai/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/helpers/__init__.py -------------------------------------------------------------------------------- /src/openai/helpers/local_audio_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/helpers/local_audio_player.py -------------------------------------------------------------------------------- /src/openai/helpers/microphone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/helpers/microphone.py -------------------------------------------------------------------------------- /src/openai/lib/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/.keep -------------------------------------------------------------------------------- /src/openai/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/__init__.py -------------------------------------------------------------------------------- /src/openai/lib/_old_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/_old_api.py -------------------------------------------------------------------------------- /src/openai/lib/_parsing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/_parsing/__init__.py -------------------------------------------------------------------------------- /src/openai/lib/_parsing/_completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/_parsing/_completions.py -------------------------------------------------------------------------------- /src/openai/lib/_parsing/_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/_parsing/_responses.py -------------------------------------------------------------------------------- /src/openai/lib/_pydantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/_pydantic.py -------------------------------------------------------------------------------- /src/openai/lib/_realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/_realtime.py -------------------------------------------------------------------------------- /src/openai/lib/_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/_tools.py -------------------------------------------------------------------------------- /src/openai/lib/_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/_validators.py -------------------------------------------------------------------------------- /src/openai/lib/azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/azure.py -------------------------------------------------------------------------------- /src/openai/lib/streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/streaming/__init__.py -------------------------------------------------------------------------------- /src/openai/lib/streaming/_assistants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/streaming/_assistants.py -------------------------------------------------------------------------------- /src/openai/lib/streaming/_deltas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/streaming/_deltas.py -------------------------------------------------------------------------------- /src/openai/lib/streaming/chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/streaming/chat/__init__.py -------------------------------------------------------------------------------- /src/openai/lib/streaming/chat/_completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/streaming/chat/_completions.py -------------------------------------------------------------------------------- /src/openai/lib/streaming/chat/_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/streaming/chat/_events.py -------------------------------------------------------------------------------- /src/openai/lib/streaming/chat/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/streaming/chat/_types.py -------------------------------------------------------------------------------- /src/openai/lib/streaming/responses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/streaming/responses/__init__.py -------------------------------------------------------------------------------- /src/openai/lib/streaming/responses/_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/streaming/responses/_events.py -------------------------------------------------------------------------------- /src/openai/lib/streaming/responses/_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/streaming/responses/_responses.py -------------------------------------------------------------------------------- /src/openai/lib/streaming/responses/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/lib/streaming/responses/_types.py -------------------------------------------------------------------------------- /src/openai/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/pagination.py -------------------------------------------------------------------------------- /src/openai/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/openai/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/audio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/audio/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/audio/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/audio/audio.py -------------------------------------------------------------------------------- /src/openai/resources/audio/speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/audio/speech.py -------------------------------------------------------------------------------- /src/openai/resources/audio/transcriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/audio/transcriptions.py -------------------------------------------------------------------------------- /src/openai/resources/audio/translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/audio/translations.py -------------------------------------------------------------------------------- /src/openai/resources/batches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/batches.py -------------------------------------------------------------------------------- /src/openai/resources/beta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/beta/assistants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/assistants.py -------------------------------------------------------------------------------- /src/openai/resources/beta/beta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/beta.py -------------------------------------------------------------------------------- /src/openai/resources/beta/chatkit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/chatkit/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/beta/chatkit/chatkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/chatkit/chatkit.py -------------------------------------------------------------------------------- /src/openai/resources/beta/chatkit/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/chatkit/sessions.py -------------------------------------------------------------------------------- /src/openai/resources/beta/chatkit/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/chatkit/threads.py -------------------------------------------------------------------------------- /src/openai/resources/beta/realtime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/realtime/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/beta/realtime/realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/realtime/realtime.py -------------------------------------------------------------------------------- /src/openai/resources/beta/realtime/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/realtime/sessions.py -------------------------------------------------------------------------------- /src/openai/resources/beta/threads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/threads/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/beta/threads/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/threads/messages.py -------------------------------------------------------------------------------- /src/openai/resources/beta/threads/runs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/threads/runs/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/beta/threads/runs/runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/threads/runs/runs.py -------------------------------------------------------------------------------- /src/openai/resources/beta/threads/runs/steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/threads/runs/steps.py -------------------------------------------------------------------------------- /src/openai/resources/beta/threads/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/beta/threads/threads.py -------------------------------------------------------------------------------- /src/openai/resources/chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/chat/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/chat/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/chat/chat.py -------------------------------------------------------------------------------- /src/openai/resources/chat/completions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/chat/completions/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/chat/completions/completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/chat/completions/completions.py -------------------------------------------------------------------------------- /src/openai/resources/chat/completions/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/chat/completions/messages.py -------------------------------------------------------------------------------- /src/openai/resources/completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/completions.py -------------------------------------------------------------------------------- /src/openai/resources/containers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/containers/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/containers/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/containers/containers.py -------------------------------------------------------------------------------- /src/openai/resources/containers/files/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/containers/files/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/containers/files/content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/containers/files/content.py -------------------------------------------------------------------------------- /src/openai/resources/containers/files/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/containers/files/files.py -------------------------------------------------------------------------------- /src/openai/resources/conversations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/conversations/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/conversations/conversations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/conversations/conversations.py -------------------------------------------------------------------------------- /src/openai/resources/conversations/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/conversations/items.py -------------------------------------------------------------------------------- /src/openai/resources/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/embeddings.py -------------------------------------------------------------------------------- /src/openai/resources/evals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/evals/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/evals/evals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/evals/evals.py -------------------------------------------------------------------------------- /src/openai/resources/evals/runs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/evals/runs/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/evals/runs/output_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/evals/runs/output_items.py -------------------------------------------------------------------------------- /src/openai/resources/evals/runs/runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/evals/runs/runs.py -------------------------------------------------------------------------------- /src/openai/resources/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/files.py -------------------------------------------------------------------------------- /src/openai/resources/fine_tuning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/fine_tuning/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/fine_tuning/alpha/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/fine_tuning/alpha/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/fine_tuning/alpha/alpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/fine_tuning/alpha/alpha.py -------------------------------------------------------------------------------- /src/openai/resources/fine_tuning/alpha/graders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/fine_tuning/alpha/graders.py -------------------------------------------------------------------------------- /src/openai/resources/fine_tuning/checkpoints/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/fine_tuning/checkpoints/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/fine_tuning/fine_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/fine_tuning/fine_tuning.py -------------------------------------------------------------------------------- /src/openai/resources/fine_tuning/jobs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/fine_tuning/jobs/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/fine_tuning/jobs/checkpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/fine_tuning/jobs/checkpoints.py -------------------------------------------------------------------------------- /src/openai/resources/fine_tuning/jobs/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/fine_tuning/jobs/jobs.py -------------------------------------------------------------------------------- /src/openai/resources/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/images.py -------------------------------------------------------------------------------- /src/openai/resources/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/models.py -------------------------------------------------------------------------------- /src/openai/resources/moderations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/moderations.py -------------------------------------------------------------------------------- /src/openai/resources/realtime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/realtime/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/realtime/calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/realtime/calls.py -------------------------------------------------------------------------------- /src/openai/resources/realtime/client_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/realtime/client_secrets.py -------------------------------------------------------------------------------- /src/openai/resources/realtime/realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/realtime/realtime.py -------------------------------------------------------------------------------- /src/openai/resources/responses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/responses/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/responses/input_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/responses/input_items.py -------------------------------------------------------------------------------- /src/openai/resources/responses/input_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/responses/input_tokens.py -------------------------------------------------------------------------------- /src/openai/resources/responses/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/responses/responses.py -------------------------------------------------------------------------------- /src/openai/resources/uploads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/uploads/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/uploads/parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/uploads/parts.py -------------------------------------------------------------------------------- /src/openai/resources/uploads/uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/uploads/uploads.py -------------------------------------------------------------------------------- /src/openai/resources/vector_stores/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/vector_stores/__init__.py -------------------------------------------------------------------------------- /src/openai/resources/vector_stores/file_batches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/vector_stores/file_batches.py -------------------------------------------------------------------------------- /src/openai/resources/vector_stores/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/vector_stores/files.py -------------------------------------------------------------------------------- /src/openai/resources/vector_stores/vector_stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/vector_stores/vector_stores.py -------------------------------------------------------------------------------- /src/openai/resources/videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/videos.py -------------------------------------------------------------------------------- /src/openai/resources/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/resources/webhooks.py -------------------------------------------------------------------------------- /src/openai/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/__init__.py -------------------------------------------------------------------------------- /src/openai/types/audio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/__init__.py -------------------------------------------------------------------------------- /src/openai/types/audio/speech_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/speech_create_params.py -------------------------------------------------------------------------------- /src/openai/types/audio/speech_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/speech_model.py -------------------------------------------------------------------------------- /src/openai/types/audio/transcription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/transcription.py -------------------------------------------------------------------------------- /src/openai/types/audio/transcription_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/transcription_create_params.py -------------------------------------------------------------------------------- /src/openai/types/audio/transcription_create_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/transcription_create_response.py -------------------------------------------------------------------------------- /src/openai/types/audio/transcription_diarized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/transcription_diarized.py -------------------------------------------------------------------------------- /src/openai/types/audio/transcription_diarized_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/transcription_diarized_segment.py -------------------------------------------------------------------------------- /src/openai/types/audio/transcription_include.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/transcription_include.py -------------------------------------------------------------------------------- /src/openai/types/audio/transcription_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/transcription_segment.py -------------------------------------------------------------------------------- /src/openai/types/audio/transcription_stream_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/transcription_stream_event.py -------------------------------------------------------------------------------- /src/openai/types/audio/transcription_text_delta_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/transcription_text_delta_event.py -------------------------------------------------------------------------------- /src/openai/types/audio/transcription_text_done_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/transcription_text_done_event.py -------------------------------------------------------------------------------- /src/openai/types/audio/transcription_verbose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/transcription_verbose.py -------------------------------------------------------------------------------- /src/openai/types/audio/transcription_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/transcription_word.py -------------------------------------------------------------------------------- /src/openai/types/audio/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/translation.py -------------------------------------------------------------------------------- /src/openai/types/audio/translation_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/translation_create_params.py -------------------------------------------------------------------------------- /src/openai/types/audio/translation_create_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/translation_create_response.py -------------------------------------------------------------------------------- /src/openai/types/audio/translation_verbose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio/translation_verbose.py -------------------------------------------------------------------------------- /src/openai/types/audio_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio_model.py -------------------------------------------------------------------------------- /src/openai/types/audio_response_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/audio_response_format.py -------------------------------------------------------------------------------- /src/openai/types/auto_file_chunking_strategy_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/auto_file_chunking_strategy_param.py -------------------------------------------------------------------------------- /src/openai/types/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/batch.py -------------------------------------------------------------------------------- /src/openai/types/batch_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/batch_create_params.py -------------------------------------------------------------------------------- /src/openai/types/batch_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/batch_error.py -------------------------------------------------------------------------------- /src/openai/types/batch_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/batch_list_params.py -------------------------------------------------------------------------------- /src/openai/types/batch_request_counts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/batch_request_counts.py -------------------------------------------------------------------------------- /src/openai/types/batch_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/batch_usage.py -------------------------------------------------------------------------------- /src/openai/types/beta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/__init__.py -------------------------------------------------------------------------------- /src/openai/types/beta/assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/assistant.py -------------------------------------------------------------------------------- /src/openai/types/beta/assistant_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/assistant_create_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/assistant_deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/assistant_deleted.py -------------------------------------------------------------------------------- /src/openai/types/beta/assistant_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/assistant_list_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/assistant_stream_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/assistant_stream_event.py -------------------------------------------------------------------------------- /src/openai/types/beta/assistant_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/assistant_tool.py -------------------------------------------------------------------------------- /src/openai/types/beta/assistant_tool_choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/assistant_tool_choice.py -------------------------------------------------------------------------------- /src/openai/types/beta/assistant_tool_choice_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/assistant_tool_choice_function.py -------------------------------------------------------------------------------- /src/openai/types/beta/assistant_tool_choice_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/assistant_tool_choice_option.py -------------------------------------------------------------------------------- /src/openai/types/beta/assistant_tool_choice_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/assistant_tool_choice_param.py -------------------------------------------------------------------------------- /src/openai/types/beta/assistant_tool_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/assistant_tool_param.py -------------------------------------------------------------------------------- /src/openai/types/beta/assistant_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/assistant_update_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/chat/__init__.py -------------------------------------------------------------------------------- /src/openai/types/beta/chatkit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/chatkit/__init__.py -------------------------------------------------------------------------------- /src/openai/types/beta/chatkit/chat_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/chatkit/chat_session.py -------------------------------------------------------------------------------- /src/openai/types/beta/chatkit/chat_session_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/chatkit/chat_session_history.py -------------------------------------------------------------------------------- /src/openai/types/beta/chatkit/chat_session_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/chatkit/chat_session_status.py -------------------------------------------------------------------------------- /src/openai/types/beta/chatkit/chatkit_attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/chatkit/chatkit_attachment.py -------------------------------------------------------------------------------- /src/openai/types/beta/chatkit/chatkit_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/chatkit/chatkit_thread.py -------------------------------------------------------------------------------- /src/openai/types/beta/chatkit/chatkit_widget_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/chatkit/chatkit_widget_item.py -------------------------------------------------------------------------------- /src/openai/types/beta/chatkit/session_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/chatkit/session_create_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/chatkit/thread_delete_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/chatkit/thread_delete_response.py -------------------------------------------------------------------------------- /src/openai/types/beta/chatkit/thread_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/chatkit/thread_list_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/chatkit_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/chatkit_workflow.py -------------------------------------------------------------------------------- /src/openai/types/beta/code_interpreter_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/code_interpreter_tool.py -------------------------------------------------------------------------------- /src/openai/types/beta/code_interpreter_tool_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/code_interpreter_tool_param.py -------------------------------------------------------------------------------- /src/openai/types/beta/file_search_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/file_search_tool.py -------------------------------------------------------------------------------- /src/openai/types/beta/file_search_tool_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/file_search_tool_param.py -------------------------------------------------------------------------------- /src/openai/types/beta/function_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/function_tool.py -------------------------------------------------------------------------------- /src/openai/types/beta/function_tool_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/function_tool_param.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/__init__.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/conversation_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/conversation_item.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/error_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/error_event.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/realtime_client_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/realtime_client_event.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/realtime_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/realtime_response.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/realtime_server_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/realtime_server_event.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/response_cancel_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/response_cancel_event.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/response_create_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/response_create_event.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/response_created_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/response_created_event.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/response_done_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/response_done_event.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/session.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/session_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/session_create_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/session_created_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/session_created_event.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/session_update_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/session_update_event.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/session_updated_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/session_updated_event.py -------------------------------------------------------------------------------- /src/openai/types/beta/realtime/transcription_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/realtime/transcription_session.py -------------------------------------------------------------------------------- /src/openai/types/beta/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/thread.py -------------------------------------------------------------------------------- /src/openai/types/beta/thread_create_and_run_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/thread_create_and_run_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/thread_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/thread_create_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/thread_deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/thread_deleted.py -------------------------------------------------------------------------------- /src/openai/types/beta/thread_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/thread_update_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/__init__.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/annotation.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/annotation_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/annotation_delta.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/file_path_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/file_path_annotation.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/image_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/image_file.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/image_file_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/image_file_delta.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/image_file_delta_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/image_file_delta_block.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/image_file_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/image_file_param.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/image_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/image_url.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/image_url_content_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/image_url_content_block.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/image_url_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/image_url_delta.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/image_url_delta_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/image_url_delta_block.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/image_url_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/image_url_param.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/message.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/message_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/message_content.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/message_content_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/message_content_delta.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/message_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/message_create_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/message_deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/message_deleted.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/message_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/message_delta.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/message_delta_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/message_delta_event.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/message_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/message_list_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/message_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/message_update_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/refusal_content_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/refusal_content_block.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/refusal_delta_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/refusal_delta_block.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/run.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/run_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/run_create_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/run_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/run_list_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/run_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/run_status.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/run_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/run_update_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/runs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/runs/__init__.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/runs/function_tool_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/runs/function_tool_call.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/runs/run_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/runs/run_step.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/runs/run_step_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/runs/run_step_delta.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/runs/run_step_include.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/runs/run_step_include.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/runs/step_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/runs/step_list_params.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/runs/tool_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/runs/tool_call.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/runs/tool_call_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/runs/tool_call_delta.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/text.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/text_content_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/text_content_block.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/text_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/text_delta.py -------------------------------------------------------------------------------- /src/openai/types/beta/threads/text_delta_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/beta/threads/text_delta_block.py -------------------------------------------------------------------------------- /src/openai/types/chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/__init__.py -------------------------------------------------------------------------------- /src/openai/types/chat/chat_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/chat_completion.py -------------------------------------------------------------------------------- /src/openai/types/chat/chat_completion_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/chat_completion_audio.py -------------------------------------------------------------------------------- /src/openai/types/chat/chat_completion_audio_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/chat_completion_audio_param.py -------------------------------------------------------------------------------- /src/openai/types/chat/chat_completion_chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/chat_completion_chunk.py -------------------------------------------------------------------------------- /src/openai/types/chat/chat_completion_deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/chat_completion_deleted.py -------------------------------------------------------------------------------- /src/openai/types/chat/chat_completion_function_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/chat_completion_function_tool.py -------------------------------------------------------------------------------- /src/openai/types/chat/chat_completion_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/chat_completion_message.py -------------------------------------------------------------------------------- /src/openai/types/chat/chat_completion_message_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/chat_completion_message_param.py -------------------------------------------------------------------------------- /src/openai/types/chat/chat_completion_modality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/chat_completion_modality.py -------------------------------------------------------------------------------- /src/openai/types/chat/chat_completion_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/chat_completion_role.py -------------------------------------------------------------------------------- /src/openai/types/chat/chat_completion_store_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/chat_completion_store_message.py -------------------------------------------------------------------------------- /src/openai/types/chat/chat_completion_token_logprob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/chat_completion_token_logprob.py -------------------------------------------------------------------------------- /src/openai/types/chat/chat_completion_tool_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/chat_completion_tool_param.py -------------------------------------------------------------------------------- /src/openai/types/chat/completion_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/completion_create_params.py -------------------------------------------------------------------------------- /src/openai/types/chat/completion_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/completion_list_params.py -------------------------------------------------------------------------------- /src/openai/types/chat/completion_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/completion_update_params.py -------------------------------------------------------------------------------- /src/openai/types/chat/completions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/completions/__init__.py -------------------------------------------------------------------------------- /src/openai/types/chat/completions/message_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/completions/message_list_params.py -------------------------------------------------------------------------------- /src/openai/types/chat/parsed_chat_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/parsed_chat_completion.py -------------------------------------------------------------------------------- /src/openai/types/chat/parsed_function_tool_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat/parsed_function_tool_call.py -------------------------------------------------------------------------------- /src/openai/types/chat_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/chat_model.py -------------------------------------------------------------------------------- /src/openai/types/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/completion.py -------------------------------------------------------------------------------- /src/openai/types/completion_choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/completion_choice.py -------------------------------------------------------------------------------- /src/openai/types/completion_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/completion_create_params.py -------------------------------------------------------------------------------- /src/openai/types/completion_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/completion_usage.py -------------------------------------------------------------------------------- /src/openai/types/container_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/container_create_params.py -------------------------------------------------------------------------------- /src/openai/types/container_create_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/container_create_response.py -------------------------------------------------------------------------------- /src/openai/types/container_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/container_list_params.py -------------------------------------------------------------------------------- /src/openai/types/container_list_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/container_list_response.py -------------------------------------------------------------------------------- /src/openai/types/container_retrieve_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/container_retrieve_response.py -------------------------------------------------------------------------------- /src/openai/types/containers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/containers/__init__.py -------------------------------------------------------------------------------- /src/openai/types/containers/file_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/containers/file_create_params.py -------------------------------------------------------------------------------- /src/openai/types/containers/file_create_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/containers/file_create_response.py -------------------------------------------------------------------------------- /src/openai/types/containers/file_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/containers/file_list_params.py -------------------------------------------------------------------------------- /src/openai/types/containers/file_list_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/containers/file_list_response.py -------------------------------------------------------------------------------- /src/openai/types/containers/file_retrieve_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/containers/file_retrieve_response.py -------------------------------------------------------------------------------- /src/openai/types/containers/files/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/containers/files/__init__.py -------------------------------------------------------------------------------- /src/openai/types/conversations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/__init__.py -------------------------------------------------------------------------------- /src/openai/types/conversations/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/conversation.py -------------------------------------------------------------------------------- /src/openai/types/conversations/conversation_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/conversation_item.py -------------------------------------------------------------------------------- /src/openai/types/conversations/conversation_item_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/conversation_item_list.py -------------------------------------------------------------------------------- /src/openai/types/conversations/input_file_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/input_file_content.py -------------------------------------------------------------------------------- /src/openai/types/conversations/input_image_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/input_image_content.py -------------------------------------------------------------------------------- /src/openai/types/conversations/input_text_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/input_text_content.py -------------------------------------------------------------------------------- /src/openai/types/conversations/item_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/item_create_params.py -------------------------------------------------------------------------------- /src/openai/types/conversations/item_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/item_list_params.py -------------------------------------------------------------------------------- /src/openai/types/conversations/item_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/item_retrieve_params.py -------------------------------------------------------------------------------- /src/openai/types/conversations/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/message.py -------------------------------------------------------------------------------- /src/openai/types/conversations/output_text_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/output_text_content.py -------------------------------------------------------------------------------- /src/openai/types/conversations/refusal_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/refusal_content.py -------------------------------------------------------------------------------- /src/openai/types/conversations/refusal_content_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/refusal_content_param.py -------------------------------------------------------------------------------- /src/openai/types/conversations/summary_text_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/summary_text_content.py -------------------------------------------------------------------------------- /src/openai/types/conversations/text_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/conversations/text_content.py -------------------------------------------------------------------------------- /src/openai/types/create_embedding_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/create_embedding_response.py -------------------------------------------------------------------------------- /src/openai/types/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/embedding.py -------------------------------------------------------------------------------- /src/openai/types/embedding_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/embedding_create_params.py -------------------------------------------------------------------------------- /src/openai/types/embedding_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/embedding_model.py -------------------------------------------------------------------------------- /src/openai/types/eval_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/eval_create_params.py -------------------------------------------------------------------------------- /src/openai/types/eval_create_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/eval_create_response.py -------------------------------------------------------------------------------- /src/openai/types/eval_custom_data_source_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/eval_custom_data_source_config.py -------------------------------------------------------------------------------- /src/openai/types/eval_delete_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/eval_delete_response.py -------------------------------------------------------------------------------- /src/openai/types/eval_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/eval_list_params.py -------------------------------------------------------------------------------- /src/openai/types/eval_list_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/eval_list_response.py -------------------------------------------------------------------------------- /src/openai/types/eval_retrieve_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/eval_retrieve_response.py -------------------------------------------------------------------------------- /src/openai/types/eval_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/eval_update_params.py -------------------------------------------------------------------------------- /src/openai/types/eval_update_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/eval_update_response.py -------------------------------------------------------------------------------- /src/openai/types/evals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/evals/__init__.py -------------------------------------------------------------------------------- /src/openai/types/evals/eval_api_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/evals/eval_api_error.py -------------------------------------------------------------------------------- /src/openai/types/evals/run_cancel_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/evals/run_cancel_response.py -------------------------------------------------------------------------------- /src/openai/types/evals/run_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/evals/run_create_params.py -------------------------------------------------------------------------------- /src/openai/types/evals/run_create_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/evals/run_create_response.py -------------------------------------------------------------------------------- /src/openai/types/evals/run_delete_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/evals/run_delete_response.py -------------------------------------------------------------------------------- /src/openai/types/evals/run_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/evals/run_list_params.py -------------------------------------------------------------------------------- /src/openai/types/evals/run_list_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/evals/run_list_response.py -------------------------------------------------------------------------------- /src/openai/types/evals/run_retrieve_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/evals/run_retrieve_response.py -------------------------------------------------------------------------------- /src/openai/types/evals/runs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/evals/runs/__init__.py -------------------------------------------------------------------------------- /src/openai/types/evals/runs/output_item_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/evals/runs/output_item_list_params.py -------------------------------------------------------------------------------- /src/openai/types/evals/runs/output_item_list_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/evals/runs/output_item_list_response.py -------------------------------------------------------------------------------- /src/openai/types/file_chunking_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/file_chunking_strategy.py -------------------------------------------------------------------------------- /src/openai/types/file_chunking_strategy_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/file_chunking_strategy_param.py -------------------------------------------------------------------------------- /src/openai/types/file_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/file_content.py -------------------------------------------------------------------------------- /src/openai/types/file_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/file_create_params.py -------------------------------------------------------------------------------- /src/openai/types/file_deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/file_deleted.py -------------------------------------------------------------------------------- /src/openai/types/file_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/file_list_params.py -------------------------------------------------------------------------------- /src/openai/types/file_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/file_object.py -------------------------------------------------------------------------------- /src/openai/types/file_purpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/file_purpose.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/__init__.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/alpha/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/alpha/__init__.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/alpha/grader_run_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/alpha/grader_run_params.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/checkpoints/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/checkpoints/__init__.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/dpo_hyperparameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/dpo_hyperparameters.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/dpo_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/dpo_method.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/dpo_method_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/dpo_method_param.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/fine_tuning_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/fine_tuning_job.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/fine_tuning_job_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/fine_tuning_job_event.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/job_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/job_create_params.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/job_list_events_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/job_list_events_params.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/job_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/job_list_params.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/jobs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/jobs/__init__.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/reinforcement_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/reinforcement_method.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/supervised_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/supervised_method.py -------------------------------------------------------------------------------- /src/openai/types/fine_tuning/supervised_method_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/fine_tuning/supervised_method_param.py -------------------------------------------------------------------------------- /src/openai/types/graders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/graders/__init__.py -------------------------------------------------------------------------------- /src/openai/types/graders/label_model_grader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/graders/label_model_grader.py -------------------------------------------------------------------------------- /src/openai/types/graders/label_model_grader_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/graders/label_model_grader_param.py -------------------------------------------------------------------------------- /src/openai/types/graders/multi_grader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/graders/multi_grader.py -------------------------------------------------------------------------------- /src/openai/types/graders/multi_grader_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/graders/multi_grader_param.py -------------------------------------------------------------------------------- /src/openai/types/graders/python_grader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/graders/python_grader.py -------------------------------------------------------------------------------- /src/openai/types/graders/python_grader_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/graders/python_grader_param.py -------------------------------------------------------------------------------- /src/openai/types/graders/score_model_grader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/graders/score_model_grader.py -------------------------------------------------------------------------------- /src/openai/types/graders/score_model_grader_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/graders/score_model_grader_param.py -------------------------------------------------------------------------------- /src/openai/types/graders/string_check_grader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/graders/string_check_grader.py -------------------------------------------------------------------------------- /src/openai/types/graders/string_check_grader_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/graders/string_check_grader_param.py -------------------------------------------------------------------------------- /src/openai/types/graders/text_similarity_grader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/graders/text_similarity_grader.py -------------------------------------------------------------------------------- /src/openai/types/graders/text_similarity_grader_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/graders/text_similarity_grader_param.py -------------------------------------------------------------------------------- /src/openai/types/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/image.py -------------------------------------------------------------------------------- /src/openai/types/image_create_variation_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/image_create_variation_params.py -------------------------------------------------------------------------------- /src/openai/types/image_edit_completed_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/image_edit_completed_event.py -------------------------------------------------------------------------------- /src/openai/types/image_edit_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/image_edit_params.py -------------------------------------------------------------------------------- /src/openai/types/image_edit_partial_image_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/image_edit_partial_image_event.py -------------------------------------------------------------------------------- /src/openai/types/image_edit_stream_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/image_edit_stream_event.py -------------------------------------------------------------------------------- /src/openai/types/image_gen_completed_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/image_gen_completed_event.py -------------------------------------------------------------------------------- /src/openai/types/image_gen_partial_image_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/image_gen_partial_image_event.py -------------------------------------------------------------------------------- /src/openai/types/image_gen_stream_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/image_gen_stream_event.py -------------------------------------------------------------------------------- /src/openai/types/image_generate_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/image_generate_params.py -------------------------------------------------------------------------------- /src/openai/types/image_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/image_model.py -------------------------------------------------------------------------------- /src/openai/types/images_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/images_response.py -------------------------------------------------------------------------------- /src/openai/types/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/model.py -------------------------------------------------------------------------------- /src/openai/types/model_deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/model_deleted.py -------------------------------------------------------------------------------- /src/openai/types/moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/moderation.py -------------------------------------------------------------------------------- /src/openai/types/moderation_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/moderation_create_params.py -------------------------------------------------------------------------------- /src/openai/types/moderation_create_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/moderation_create_response.py -------------------------------------------------------------------------------- /src/openai/types/moderation_image_url_input_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/moderation_image_url_input_param.py -------------------------------------------------------------------------------- /src/openai/types/moderation_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/moderation_model.py -------------------------------------------------------------------------------- /src/openai/types/moderation_multi_modal_input_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/moderation_multi_modal_input_param.py -------------------------------------------------------------------------------- /src/openai/types/moderation_text_input_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/moderation_text_input_param.py -------------------------------------------------------------------------------- /src/openai/types/other_file_chunking_strategy_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/other_file_chunking_strategy_object.py -------------------------------------------------------------------------------- /src/openai/types/realtime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/__init__.py -------------------------------------------------------------------------------- /src/openai/types/realtime/audio_transcription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/audio_transcription.py -------------------------------------------------------------------------------- /src/openai/types/realtime/audio_transcription_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/audio_transcription_param.py -------------------------------------------------------------------------------- /src/openai/types/realtime/call_accept_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/call_accept_params.py -------------------------------------------------------------------------------- /src/openai/types/realtime/call_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/call_create_params.py -------------------------------------------------------------------------------- /src/openai/types/realtime/call_refer_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/call_refer_params.py -------------------------------------------------------------------------------- /src/openai/types/realtime/call_reject_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/call_reject_params.py -------------------------------------------------------------------------------- /src/openai/types/realtime/client_secret_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/client_secret_create_params.py -------------------------------------------------------------------------------- /src/openai/types/realtime/conversation_created_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/conversation_created_event.py -------------------------------------------------------------------------------- /src/openai/types/realtime/conversation_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/conversation_item.py -------------------------------------------------------------------------------- /src/openai/types/realtime/conversation_item_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/conversation_item_added.py -------------------------------------------------------------------------------- /src/openai/types/realtime/conversation_item_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/conversation_item_done.py -------------------------------------------------------------------------------- /src/openai/types/realtime/conversation_item_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/conversation_item_param.py -------------------------------------------------------------------------------- /src/openai/types/realtime/log_prob_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/log_prob_properties.py -------------------------------------------------------------------------------- /src/openai/types/realtime/mcp_list_tools_completed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/mcp_list_tools_completed.py -------------------------------------------------------------------------------- /src/openai/types/realtime/mcp_list_tools_failed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/mcp_list_tools_failed.py -------------------------------------------------------------------------------- /src/openai/types/realtime/mcp_list_tools_in_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/mcp_list_tools_in_progress.py -------------------------------------------------------------------------------- /src/openai/types/realtime/noise_reduction_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/noise_reduction_type.py -------------------------------------------------------------------------------- /src/openai/types/realtime/rate_limits_updated_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/rate_limits_updated_event.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_audio_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_audio_config.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_audio_config_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_audio_config_input.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_audio_config_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_audio_config_param.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_audio_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_audio_formats.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_client_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_client_event.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_client_event_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_client_event_param.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_connect_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_connect_params.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_error.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_error_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_error_event.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_function_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_function_tool.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_mcp_list_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_mcp_list_tools.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_mcp_protocol_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_mcp_protocol_error.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_mcp_tool_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_mcp_tool_call.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_mcphttp_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_mcphttp_error.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_response.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_response_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_response_status.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_response_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_response_usage.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_server_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_server_event.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_tool_choice_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_tool_choice_config.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_tools_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_tools_config.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_tools_config_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_tools_config_param.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_tools_config_union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_tools_config_union.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_tracing_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_tracing_config.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_truncation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_truncation.py -------------------------------------------------------------------------------- /src/openai/types/realtime/realtime_truncation_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/realtime_truncation_param.py -------------------------------------------------------------------------------- /src/openai/types/realtime/response_audio_delta_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/response_audio_delta_event.py -------------------------------------------------------------------------------- /src/openai/types/realtime/response_audio_done_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/response_audio_done_event.py -------------------------------------------------------------------------------- /src/openai/types/realtime/response_cancel_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/response_cancel_event.py -------------------------------------------------------------------------------- /src/openai/types/realtime/response_cancel_event_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/response_cancel_event_param.py -------------------------------------------------------------------------------- /src/openai/types/realtime/response_create_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/response_create_event.py -------------------------------------------------------------------------------- /src/openai/types/realtime/response_create_event_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/response_create_event_param.py -------------------------------------------------------------------------------- /src/openai/types/realtime/response_created_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/response_created_event.py -------------------------------------------------------------------------------- /src/openai/types/realtime/response_done_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/response_done_event.py -------------------------------------------------------------------------------- /src/openai/types/realtime/response_mcp_call_completed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/response_mcp_call_completed.py -------------------------------------------------------------------------------- /src/openai/types/realtime/response_mcp_call_failed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/response_mcp_call_failed.py -------------------------------------------------------------------------------- /src/openai/types/realtime/response_text_delta_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/response_text_delta_event.py -------------------------------------------------------------------------------- /src/openai/types/realtime/response_text_done_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/response_text_done_event.py -------------------------------------------------------------------------------- /src/openai/types/realtime/session_created_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/session_created_event.py -------------------------------------------------------------------------------- /src/openai/types/realtime/session_update_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/session_update_event.py -------------------------------------------------------------------------------- /src/openai/types/realtime/session_update_event_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/session_update_event_param.py -------------------------------------------------------------------------------- /src/openai/types/realtime/session_updated_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/realtime/session_updated_event.py -------------------------------------------------------------------------------- /src/openai/types/responses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/__init__.py -------------------------------------------------------------------------------- /src/openai/types/responses/apply_patch_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/apply_patch_tool.py -------------------------------------------------------------------------------- /src/openai/types/responses/apply_patch_tool_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/apply_patch_tool_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/compacted_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/compacted_response.py -------------------------------------------------------------------------------- /src/openai/types/responses/computer_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/computer_tool.py -------------------------------------------------------------------------------- /src/openai/types/responses/computer_tool_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/computer_tool_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/custom_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/custom_tool.py -------------------------------------------------------------------------------- /src/openai/types/responses/custom_tool_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/custom_tool_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/easy_input_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/easy_input_message.py -------------------------------------------------------------------------------- /src/openai/types/responses/easy_input_message_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/easy_input_message_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/file_search_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/file_search_tool.py -------------------------------------------------------------------------------- /src/openai/types/responses/file_search_tool_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/file_search_tool_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/function_shell_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/function_shell_tool.py -------------------------------------------------------------------------------- /src/openai/types/responses/function_shell_tool_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/function_shell_tool_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/function_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/function_tool.py -------------------------------------------------------------------------------- /src/openai/types/responses/function_tool_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/function_tool_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/input_item_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/input_item_list_params.py -------------------------------------------------------------------------------- /src/openai/types/responses/input_token_count_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/input_token_count_params.py -------------------------------------------------------------------------------- /src/openai/types/responses/input_token_count_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/input_token_count_response.py -------------------------------------------------------------------------------- /src/openai/types/responses/parsed_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/parsed_response.py -------------------------------------------------------------------------------- /src/openai/types/responses/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_audio_delta_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_audio_delta_event.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_audio_done_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_audio_done_event.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_compact_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_compact_params.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_compaction_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_compaction_item.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_completed_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_completed_event.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_create_params.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_created_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_created_event.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_custom_tool_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_custom_tool_call.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_error.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_error_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_error_event.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_failed_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_failed_event.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_in_progress_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_in_progress_event.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_includable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_includable.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_incomplete_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_incomplete_event.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_input_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_input_audio.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_input_audio_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_input_audio_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_input_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_input_content.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_input_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_input_file.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_input_file_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_input_file_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_input_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_input_image.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_input_image_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_input_image_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_input_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_input_item.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_input_item_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_input_item_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_input_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_input_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_input_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_input_text.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_input_text_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_input_text_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_item.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_item_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_item_list.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_output_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_output_item.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_output_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_output_message.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_output_refusal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_output_refusal.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_output_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_output_text.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_output_text_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_output_text_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_prompt.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_prompt_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_prompt_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_queued_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_queued_event.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_reasoning_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_reasoning_item.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_retrieve_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_retrieve_params.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_status.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_stream_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_stream_event.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_text_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_text_config.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_text_config_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_text_config_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_text_delta_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_text_delta_event.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_text_done_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_text_done_event.py -------------------------------------------------------------------------------- /src/openai/types/responses/response_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/response_usage.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool_choice_allowed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool_choice_allowed.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool_choice_allowed_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool_choice_allowed_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool_choice_apply_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool_choice_apply_patch.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool_choice_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool_choice_custom.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool_choice_custom_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool_choice_custom_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool_choice_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool_choice_function.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool_choice_function_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool_choice_function_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool_choice_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool_choice_mcp.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool_choice_mcp_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool_choice_mcp_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool_choice_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool_choice_options.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool_choice_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool_choice_shell.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool_choice_shell_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool_choice_shell_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool_choice_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool_choice_types.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool_choice_types_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool_choice_types_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/tool_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/tool_param.py -------------------------------------------------------------------------------- /src/openai/types/responses/web_search_preview_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/web_search_preview_tool.py -------------------------------------------------------------------------------- /src/openai/types/responses/web_search_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/web_search_tool.py -------------------------------------------------------------------------------- /src/openai/types/responses/web_search_tool_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/responses/web_search_tool_param.py -------------------------------------------------------------------------------- /src/openai/types/shared/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/__init__.py -------------------------------------------------------------------------------- /src/openai/types/shared/all_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/all_models.py -------------------------------------------------------------------------------- /src/openai/types/shared/chat_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/chat_model.py -------------------------------------------------------------------------------- /src/openai/types/shared/comparison_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/comparison_filter.py -------------------------------------------------------------------------------- /src/openai/types/shared/compound_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/compound_filter.py -------------------------------------------------------------------------------- /src/openai/types/shared/custom_tool_input_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/custom_tool_input_format.py -------------------------------------------------------------------------------- /src/openai/types/shared/error_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/error_object.py -------------------------------------------------------------------------------- /src/openai/types/shared/function_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/function_definition.py -------------------------------------------------------------------------------- /src/openai/types/shared/function_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/function_parameters.py -------------------------------------------------------------------------------- /src/openai/types/shared/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/metadata.py -------------------------------------------------------------------------------- /src/openai/types/shared/reasoning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/reasoning.py -------------------------------------------------------------------------------- /src/openai/types/shared/reasoning_effort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/reasoning_effort.py -------------------------------------------------------------------------------- /src/openai/types/shared/response_format_json_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/response_format_json_object.py -------------------------------------------------------------------------------- /src/openai/types/shared/response_format_json_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/response_format_json_schema.py -------------------------------------------------------------------------------- /src/openai/types/shared/response_format_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/response_format_text.py -------------------------------------------------------------------------------- /src/openai/types/shared/response_format_text_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/response_format_text_grammar.py -------------------------------------------------------------------------------- /src/openai/types/shared/response_format_text_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/response_format_text_python.py -------------------------------------------------------------------------------- /src/openai/types/shared/responses_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared/responses_model.py -------------------------------------------------------------------------------- /src/openai/types/shared_params/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared_params/__init__.py -------------------------------------------------------------------------------- /src/openai/types/shared_params/chat_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared_params/chat_model.py -------------------------------------------------------------------------------- /src/openai/types/shared_params/comparison_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared_params/comparison_filter.py -------------------------------------------------------------------------------- /src/openai/types/shared_params/compound_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared_params/compound_filter.py -------------------------------------------------------------------------------- /src/openai/types/shared_params/function_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared_params/function_definition.py -------------------------------------------------------------------------------- /src/openai/types/shared_params/function_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared_params/function_parameters.py -------------------------------------------------------------------------------- /src/openai/types/shared_params/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared_params/metadata.py -------------------------------------------------------------------------------- /src/openai/types/shared_params/reasoning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared_params/reasoning.py -------------------------------------------------------------------------------- /src/openai/types/shared_params/reasoning_effort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared_params/reasoning_effort.py -------------------------------------------------------------------------------- /src/openai/types/shared_params/response_format_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared_params/response_format_text.py -------------------------------------------------------------------------------- /src/openai/types/shared_params/responses_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/shared_params/responses_model.py -------------------------------------------------------------------------------- /src/openai/types/static_file_chunking_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/static_file_chunking_strategy.py -------------------------------------------------------------------------------- /src/openai/types/static_file_chunking_strategy_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/static_file_chunking_strategy_object.py -------------------------------------------------------------------------------- /src/openai/types/static_file_chunking_strategy_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/static_file_chunking_strategy_param.py -------------------------------------------------------------------------------- /src/openai/types/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/upload.py -------------------------------------------------------------------------------- /src/openai/types/upload_complete_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/upload_complete_params.py -------------------------------------------------------------------------------- /src/openai/types/upload_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/upload_create_params.py -------------------------------------------------------------------------------- /src/openai/types/uploads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/uploads/__init__.py -------------------------------------------------------------------------------- /src/openai/types/uploads/part_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/uploads/part_create_params.py -------------------------------------------------------------------------------- /src/openai/types/uploads/upload_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/uploads/upload_part.py -------------------------------------------------------------------------------- /src/openai/types/vector_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/vector_store.py -------------------------------------------------------------------------------- /src/openai/types/vector_store_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/vector_store_create_params.py -------------------------------------------------------------------------------- /src/openai/types/vector_store_deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/vector_store_deleted.py -------------------------------------------------------------------------------- /src/openai/types/vector_store_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/vector_store_list_params.py -------------------------------------------------------------------------------- /src/openai/types/vector_store_search_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/vector_store_search_params.py -------------------------------------------------------------------------------- /src/openai/types/vector_store_search_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/vector_store_search_response.py -------------------------------------------------------------------------------- /src/openai/types/vector_store_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/vector_store_update_params.py -------------------------------------------------------------------------------- /src/openai/types/vector_stores/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/vector_stores/__init__.py -------------------------------------------------------------------------------- /src/openai/types/vector_stores/file_content_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/vector_stores/file_content_response.py -------------------------------------------------------------------------------- /src/openai/types/vector_stores/file_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/vector_stores/file_create_params.py -------------------------------------------------------------------------------- /src/openai/types/vector_stores/file_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/vector_stores/file_list_params.py -------------------------------------------------------------------------------- /src/openai/types/vector_stores/file_update_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/vector_stores/file_update_params.py -------------------------------------------------------------------------------- /src/openai/types/vector_stores/vector_store_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/vector_stores/vector_store_file.py -------------------------------------------------------------------------------- /src/openai/types/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/video.py -------------------------------------------------------------------------------- /src/openai/types/video_create_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/video_create_error.py -------------------------------------------------------------------------------- /src/openai/types/video_create_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/video_create_params.py -------------------------------------------------------------------------------- /src/openai/types/video_delete_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/video_delete_response.py -------------------------------------------------------------------------------- /src/openai/types/video_download_content_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/video_download_content_params.py -------------------------------------------------------------------------------- /src/openai/types/video_list_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/video_list_params.py -------------------------------------------------------------------------------- /src/openai/types/video_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/video_model.py -------------------------------------------------------------------------------- /src/openai/types/video_remix_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/video_remix_params.py -------------------------------------------------------------------------------- /src/openai/types/video_seconds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/video_seconds.py -------------------------------------------------------------------------------- /src/openai/types/video_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/video_size.py -------------------------------------------------------------------------------- /src/openai/types/webhooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/webhooks/__init__.py -------------------------------------------------------------------------------- /src/openai/types/webhooks/batch_expired_webhook_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/webhooks/batch_expired_webhook_event.py -------------------------------------------------------------------------------- /src/openai/types/webhooks/batch_failed_webhook_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/webhooks/batch_failed_webhook_event.py -------------------------------------------------------------------------------- /src/openai/types/webhooks/unwrap_webhook_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/webhooks/unwrap_webhook_event.py -------------------------------------------------------------------------------- /src/openai/types/websocket_connection_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/types/websocket_connection_options.py -------------------------------------------------------------------------------- /src/openai/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/src/openai/version.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/audio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/audio/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/audio/test_speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/audio/test_speech.py -------------------------------------------------------------------------------- /tests/api_resources/audio/test_transcriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/audio/test_transcriptions.py -------------------------------------------------------------------------------- /tests/api_resources/audio/test_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/audio/test_translations.py -------------------------------------------------------------------------------- /tests/api_resources/beta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/beta/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/beta/chatkit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/beta/chatkit/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/beta/chatkit/test_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/beta/chatkit/test_sessions.py -------------------------------------------------------------------------------- /tests/api_resources/beta/chatkit/test_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/beta/chatkit/test_threads.py -------------------------------------------------------------------------------- /tests/api_resources/beta/test_assistants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/beta/test_assistants.py -------------------------------------------------------------------------------- /tests/api_resources/beta/test_realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/beta/test_realtime.py -------------------------------------------------------------------------------- /tests/api_resources/beta/test_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/beta/test_threads.py -------------------------------------------------------------------------------- /tests/api_resources/beta/threads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/beta/threads/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/beta/threads/runs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/beta/threads/runs/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/beta/threads/runs/test_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/beta/threads/runs/test_steps.py -------------------------------------------------------------------------------- /tests/api_resources/beta/threads/test_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/beta/threads/test_messages.py -------------------------------------------------------------------------------- /tests/api_resources/beta/threads/test_runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/beta/threads/test_runs.py -------------------------------------------------------------------------------- /tests/api_resources/chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/chat/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/chat/completions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/chat/completions/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/chat/completions/test_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/chat/completions/test_messages.py -------------------------------------------------------------------------------- /tests/api_resources/chat/test_completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/chat/test_completions.py -------------------------------------------------------------------------------- /tests/api_resources/containers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/containers/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/containers/files/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/containers/files/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/containers/files/test_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/containers/files/test_content.py -------------------------------------------------------------------------------- /tests/api_resources/containers/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/containers/test_files.py -------------------------------------------------------------------------------- /tests/api_resources/conversations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/conversations/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/conversations/test_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/conversations/test_items.py -------------------------------------------------------------------------------- /tests/api_resources/evals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/evals/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/evals/runs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/evals/runs/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/evals/runs/test_output_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/evals/runs/test_output_items.py -------------------------------------------------------------------------------- /tests/api_resources/evals/test_runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/evals/test_runs.py -------------------------------------------------------------------------------- /tests/api_resources/fine_tuning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/fine_tuning/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/fine_tuning/alpha/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/fine_tuning/alpha/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/fine_tuning/alpha/test_graders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/fine_tuning/alpha/test_graders.py -------------------------------------------------------------------------------- /tests/api_resources/fine_tuning/checkpoints/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/fine_tuning/checkpoints/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/fine_tuning/jobs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/fine_tuning/jobs/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/fine_tuning/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/fine_tuning/test_jobs.py -------------------------------------------------------------------------------- /tests/api_resources/realtime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/realtime/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/realtime/test_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/realtime/test_calls.py -------------------------------------------------------------------------------- /tests/api_resources/realtime/test_client_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/realtime/test_client_secrets.py -------------------------------------------------------------------------------- /tests/api_resources/responses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/responses/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/responses/test_input_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/responses/test_input_items.py -------------------------------------------------------------------------------- /tests/api_resources/responses/test_input_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/responses/test_input_tokens.py -------------------------------------------------------------------------------- /tests/api_resources/test_batches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_batches.py -------------------------------------------------------------------------------- /tests/api_resources/test_completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_completions.py -------------------------------------------------------------------------------- /tests/api_resources/test_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_containers.py -------------------------------------------------------------------------------- /tests/api_resources/test_conversations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_conversations.py -------------------------------------------------------------------------------- /tests/api_resources/test_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_embeddings.py -------------------------------------------------------------------------------- /tests/api_resources/test_evals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_evals.py -------------------------------------------------------------------------------- /tests/api_resources/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_files.py -------------------------------------------------------------------------------- /tests/api_resources/test_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_images.py -------------------------------------------------------------------------------- /tests/api_resources/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_models.py -------------------------------------------------------------------------------- /tests/api_resources/test_moderations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_moderations.py -------------------------------------------------------------------------------- /tests/api_resources/test_realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_realtime.py -------------------------------------------------------------------------------- /tests/api_resources/test_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_responses.py -------------------------------------------------------------------------------- /tests/api_resources/test_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_uploads.py -------------------------------------------------------------------------------- /tests/api_resources/test_vector_stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_vector_stores.py -------------------------------------------------------------------------------- /tests/api_resources/test_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_videos.py -------------------------------------------------------------------------------- /tests/api_resources/test_webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/test_webhooks.py -------------------------------------------------------------------------------- /tests/api_resources/uploads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/uploads/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/uploads/test_parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/uploads/test_parts.py -------------------------------------------------------------------------------- /tests/api_resources/vector_stores/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/vector_stores/__init__.py -------------------------------------------------------------------------------- /tests/api_resources/vector_stores/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/api_resources/vector_stores/test_files.py -------------------------------------------------------------------------------- /tests/compat/test_tool_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/compat/test_tool_param.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/lib/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/lib/chat/test_completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/lib/chat/test_completions.py -------------------------------------------------------------------------------- /tests/lib/chat/test_completions_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/lib/chat/test_completions_streaming.py -------------------------------------------------------------------------------- /tests/lib/responses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/lib/responses/test_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/lib/responses/test_responses.py -------------------------------------------------------------------------------- /tests/lib/schema_types/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/lib/schema_types/query.py -------------------------------------------------------------------------------- /tests/lib/snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/lib/snapshots.py -------------------------------------------------------------------------------- /tests/lib/test_assistants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/lib/test_assistants.py -------------------------------------------------------------------------------- /tests/lib/test_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/lib/test_audio.py -------------------------------------------------------------------------------- /tests/lib/test_azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/lib/test_azure.py -------------------------------------------------------------------------------- /tests/lib/test_old_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/lib/test_old_api.py -------------------------------------------------------------------------------- /tests/lib/test_pydantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/lib/test_pydantic.py -------------------------------------------------------------------------------- /tests/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/lib/utils.py -------------------------------------------------------------------------------- /tests/sample_file.txt: -------------------------------------------------------------------------------- 1 | Hello, world! 2 | -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_deepcopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_deepcopy.py -------------------------------------------------------------------------------- /tests/test_extract_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_extract_files.py -------------------------------------------------------------------------------- /tests/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_files.py -------------------------------------------------------------------------------- /tests/test_legacy_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_legacy_response.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_module_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_module_client.py -------------------------------------------------------------------------------- /tests/test_qs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_qs.py -------------------------------------------------------------------------------- /tests/test_required_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_required_args.py -------------------------------------------------------------------------------- /tests/test_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_response.py -------------------------------------------------------------------------------- /tests/test_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_streaming.py -------------------------------------------------------------------------------- /tests/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_transform.py -------------------------------------------------------------------------------- /tests/test_utils/test_datetime_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_utils/test_datetime_parse.py -------------------------------------------------------------------------------- /tests/test_utils/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_utils/test_logging.py -------------------------------------------------------------------------------- /tests/test_utils/test_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_utils/test_proxy.py -------------------------------------------------------------------------------- /tests/test_utils/test_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/test_utils/test_typing.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/openai-python/HEAD/tests/utils.py --------------------------------------------------------------------------------