scale-gp-beta 0.1.0a39__tar.gz → 0.1.0a40__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- scale_gp_beta-0.1.0a40/.release-please-manifest.json +3 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/CHANGELOG.md +32 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/PKG-INFO +3 -40
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/README.md +2 -39
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/pyproject.toml +10 -8
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/requirements-dev.lock +62 -50
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/requirements.lock +20 -19
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_base_client.py +8 -2
- scale_gp_beta-0.1.0a40/src/scale_gp_beta/_client.py +1035 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_streaming.py +12 -10
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_types.py +3 -2
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_version.py +1 -1
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/chat/completions.py +4 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/credentials.py +4 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/dataset_items.py +4 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/datasets.py +4 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/evaluation_items.py +4 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/evaluations.py +4 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/files/files.py +4 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/models.py +4 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/questions.py +4 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/spans.py +28 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/chat/completion_models_params.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/credential_list_params.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/dataset_item_list_params.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/dataset_list_params.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/evaluation.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/evaluation_create_params.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/evaluation_item_list_params.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/evaluation_list_params.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/evaluation_task.py +5 -1
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/evaluation_task_param.py +5 -1
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/file_import_from_cloud_response.py +4 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/file_list_params.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/inference_create_params.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/model_list_params.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/question_list_params.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/span_assessment.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/span_search_params.py +11 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/chat/test_completions.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/test_credentials.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/test_dataset_items.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/test_datasets.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/test_evaluation_items.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/test_evaluations.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/test_files.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/test_models.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/test_questions.py +2 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/test_spans.py +8 -0
- scale_gp_beta-0.1.0a39/.release-please-manifest.json +0 -3
- scale_gp_beta-0.1.0a39/src/scale_gp_beta/_client.py +0 -614
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/.gitignore +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/CONTRIBUTING.md +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/LICENSE +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/SECURITY.md +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/api.md +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/bin/check-release-environment +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/bin/publish-pypi +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/examples/.keep +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/examples/tracing/0_primitives_fibonacci.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/examples/tracing/1_explicit_use_case.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/examples/tracing/2_direct_upload.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/examples/tracing/3_openai_agent_tracing.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/noxfile.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/release-please-config.json +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp/lib/.keep +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_compat.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_constants.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_exceptions.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_files.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_models.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_qs.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_resource.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_utils/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_utils/_compat.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_utils/_datetime_parse.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_utils/_logs.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_utils/_proxy.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_utils/_reflection.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_utils/_resources_proxy.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_utils/_streams.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_utils/_sync.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_utils/_transform.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_utils/_typing.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/_utils/_utils.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/.keep +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/CONTRIBUTING.MD +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/tracing/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/tracing/exceptions.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/tracing/integrations/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/tracing/integrations/openai/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/tracing/integrations/openai/openai_span_type_map.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/tracing/integrations/openai/openai_tracing_sgp_processor.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/tracing/integrations/openai/utils.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/tracing/scope.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/tracing/span.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/tracing/trace.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/tracing/trace_exporter.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/tracing/trace_queue_manager.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/tracing/tracing.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/tracing/types.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/lib/tracing/util.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/pagination.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/py.typed +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/chat/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/chat/chat.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/completions.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/files/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/files/content.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/inference.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/responses.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/resources/span_assessments.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/approval_status.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/assessment_type.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/chat/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/chat/chat_completion.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/chat/chat_completion_chunk.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/chat/completion_create_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/chat/completion_create_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/chat/completion_models_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/chat/model_definition.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/completion.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/completion_create_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/component.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/component_param.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/container.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/container_param.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/credential.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/credential_create_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/credential_delete_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/credential_secret.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/credential_update_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/dataset.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/dataset_create_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/dataset_delete_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/dataset_item.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/dataset_item_batch_create_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/dataset_item_batch_create_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/dataset_item_delete_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/dataset_item_retrieve_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/dataset_item_update_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/dataset_retrieve_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/dataset_update_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/evaluation_item.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/evaluation_item_retrieve_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/evaluation_retrieve_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/evaluation_update_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/file.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/file_create_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/file_delete_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/file_import_from_cloud_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/file_update_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/files/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/inference_create_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/inference_model.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/inference_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/inference_response_chunk.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/item_locator.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/item_locator_template.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/model_create_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/model_delete_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/model_update_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/question.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/question_create_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/response_create_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/response_create_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/shared/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/shared/identity.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/span.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/span_assessment_create_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/span_assessment_delete_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/span_assessment_list_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/span_assessment_update_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/span_batch_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/span_batch_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/span_create_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/span_status.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/span_type.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/span_update_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/span_upsert_batch_params.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/scale_gp_beta/types/span_upsert_batch_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/src/sgp_dev/lib/.keep +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/chat/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/files/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/files/test_content.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/test_completions.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/test_inference.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/test_responses.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/api_resources/test_span_assessments.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/conftest.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/lib/tracing/integrations/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/lib/tracing/integrations/openai/__init__.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/lib/tracing/integrations/openai/test_utils.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/lib/tracing/test_span.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/lib/tracing/test_trace.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/lib/tracing/test_trace_exporter.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/lib/tracing/test_trace_queue_manager.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/lib/tracing/test_tracing.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/sample_file.txt +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/test_client.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/test_deepcopy.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/test_extract_files.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/test_files.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/test_models.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/test_qs.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/test_required_args.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/test_response.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/test_streaming.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/test_transform.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/test_utils/test_datetime_parse.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/test_utils/test_proxy.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/test_utils/test_typing.py +0 -0
- {scale_gp_beta-0.1.0a39 → scale_gp_beta-0.1.0a40}/tests/utils.py +0 -0
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.40 (2025-12-19)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0-alpha.39...v0.1.0-alpha.40](https://github.com/scaleapi/sgp-python-beta/compare/v0.1.0-alpha.39...v0.1.0-alpha.40)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([c60b079](https://github.com/scaleapi/sgp-python-beta/commit/c60b0795b74718ba3d91cfc5322e0acae84318c0))
|
|
10
|
+
* **api:** api update ([42b9f6a](https://github.com/scaleapi/sgp-python-beta/commit/42b9f6a356f27e922eacfbb863f423a4eb72b621))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* ensure streams are always closed ([a53f824](https://github.com/scaleapi/sgp-python-beta/commit/a53f82441b8e792c236bf2776fe62b8713c22c78))
|
|
16
|
+
* **types:** allow pyright to infer TypedDict types within SequenceNotStr ([d17d003](https://github.com/scaleapi/sgp-python-beta/commit/d17d0035c2c7b7e785991f0efb5a75c1642ead2b))
|
|
17
|
+
* use async_to_httpx_files in patch method ([0ffb743](https://github.com/scaleapi/sgp-python-beta/commit/0ffb7434c08322df729a87b5d8b2dd11329519b5))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Chores
|
|
21
|
+
|
|
22
|
+
* add missing docstrings ([0ead346](https://github.com/scaleapi/sgp-python-beta/commit/0ead346d668d8d5525c26c08b23f9690e63b0aac))
|
|
23
|
+
* **deps:** mypy 1.18.1 has a regression, pin to 1.17 ([77a4985](https://github.com/scaleapi/sgp-python-beta/commit/77a498580aee97a654b716203062851c83ba1ac8))
|
|
24
|
+
* **docs:** use environment variables for authentication in code snippets ([98c4741](https://github.com/scaleapi/sgp-python-beta/commit/98c47414cb45132c312e6e117d9a236ed802e3d5))
|
|
25
|
+
* **internal:** add `--fix` argument to lint script ([fb424fc](https://github.com/scaleapi/sgp-python-beta/commit/fb424fc6e44fd01a795324eadffc3524510e5ff1))
|
|
26
|
+
* **internal:** add missing files argument to base client ([b2c3913](https://github.com/scaleapi/sgp-python-beta/commit/b2c3913ea86dc6a462a483db2536cda7c7cda8a4))
|
|
27
|
+
* speedup initial import ([d7310c5](https://github.com/scaleapi/sgp-python-beta/commit/d7310c5260b152479fdc3a33e766928fa5624845))
|
|
28
|
+
* update lockfile ([0f851f0](https://github.com/scaleapi/sgp-python-beta/commit/0f851f0d6a7a82af1111600f323278c4ef7281d3))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Documentation
|
|
32
|
+
|
|
33
|
+
* add more examples ([ad9506e](https://github.com/scaleapi/sgp-python-beta/commit/ad9506e256c9796a56611af66a03eed2ff80c102))
|
|
34
|
+
|
|
3
35
|
## 0.1.0-alpha.39 (2025-11-21)
|
|
4
36
|
|
|
5
37
|
Full Changelog: [v0.1.0-alpha.38...v0.1.0-alpha.39](https://github.com/scaleapi/sgp-python-beta/compare/v0.1.0-alpha.38...v0.1.0-alpha.39)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: scale-gp-beta
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a40
|
|
4
4
|
Summary: The official Python library for the Scale GP API
|
|
5
5
|
Project-URL: Homepage, https://github.com/scaleapi/sgp-python-beta
|
|
6
6
|
Project-URL: Repository, https://github.com/scaleapi/sgp-python-beta
|
|
@@ -364,6 +364,7 @@ pip install --pre scale-gp-beta[aiohttp]
|
|
|
364
364
|
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
|
|
365
365
|
|
|
366
366
|
```python
|
|
367
|
+
import os
|
|
367
368
|
import asyncio
|
|
368
369
|
from scale_gp_beta import DefaultAioHttpClient
|
|
369
370
|
from scale_gp_beta import AsyncSGPClient
|
|
@@ -372,7 +373,7 @@ from scale_gp_beta import AsyncSGPClient
|
|
|
372
373
|
async def main() -> None:
|
|
373
374
|
async with AsyncSGPClient(
|
|
374
375
|
account_id="My Account ID",
|
|
375
|
-
api_key="
|
|
376
|
+
api_key=os.environ.get("SGP_API_KEY"), # This is the default and can be omitted
|
|
376
377
|
http_client=DefaultAioHttpClient(),
|
|
377
378
|
) as client:
|
|
378
379
|
completion = await client.chat.completions.create(
|
|
@@ -385,44 +386,6 @@ async def main() -> None:
|
|
|
385
386
|
asyncio.run(main())
|
|
386
387
|
```
|
|
387
388
|
|
|
388
|
-
## Streaming responses
|
|
389
|
-
|
|
390
|
-
We provide support for streaming responses using Server Side Events (SSE).
|
|
391
|
-
|
|
392
|
-
```python
|
|
393
|
-
from scale_gp_beta import SGPClient
|
|
394
|
-
|
|
395
|
-
client = SGPClient(
|
|
396
|
-
account_id="My Account ID",
|
|
397
|
-
)
|
|
398
|
-
|
|
399
|
-
stream = client.chat.completions.create(
|
|
400
|
-
messages=[{"foo": "bar"}],
|
|
401
|
-
model="model",
|
|
402
|
-
stream=True,
|
|
403
|
-
)
|
|
404
|
-
for completion in stream:
|
|
405
|
-
print(completion)
|
|
406
|
-
```
|
|
407
|
-
|
|
408
|
-
The async client uses the exact same interface.
|
|
409
|
-
|
|
410
|
-
```python
|
|
411
|
-
from scale_gp_beta import AsyncSGPClient
|
|
412
|
-
|
|
413
|
-
client = AsyncSGPClient(
|
|
414
|
-
account_id="My Account ID",
|
|
415
|
-
)
|
|
416
|
-
|
|
417
|
-
stream = await client.chat.completions.create(
|
|
418
|
-
messages=[{"foo": "bar"}],
|
|
419
|
-
model="model",
|
|
420
|
-
stream=True,
|
|
421
|
-
)
|
|
422
|
-
async for completion in stream:
|
|
423
|
-
print(completion)
|
|
424
|
-
```
|
|
425
|
-
|
|
426
389
|
## Using types
|
|
427
390
|
|
|
428
391
|
Nested request parameters are [TypedDicts](https://docs.python.org/3/library/typing.html#typing.TypedDict). Responses are [Pydantic models](https://docs.pydantic.dev) which also provide helper methods for things like:
|
|
@@ -329,6 +329,7 @@ pip install --pre scale-gp-beta[aiohttp]
|
|
|
329
329
|
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
|
|
330
330
|
|
|
331
331
|
```python
|
|
332
|
+
import os
|
|
332
333
|
import asyncio
|
|
333
334
|
from scale_gp_beta import DefaultAioHttpClient
|
|
334
335
|
from scale_gp_beta import AsyncSGPClient
|
|
@@ -337,7 +338,7 @@ from scale_gp_beta import AsyncSGPClient
|
|
|
337
338
|
async def main() -> None:
|
|
338
339
|
async with AsyncSGPClient(
|
|
339
340
|
account_id="My Account ID",
|
|
340
|
-
api_key="
|
|
341
|
+
api_key=os.environ.get("SGP_API_KEY"), # This is the default and can be omitted
|
|
341
342
|
http_client=DefaultAioHttpClient(),
|
|
342
343
|
) as client:
|
|
343
344
|
completion = await client.chat.completions.create(
|
|
@@ -350,44 +351,6 @@ async def main() -> None:
|
|
|
350
351
|
asyncio.run(main())
|
|
351
352
|
```
|
|
352
353
|
|
|
353
|
-
## Streaming responses
|
|
354
|
-
|
|
355
|
-
We provide support for streaming responses using Server Side Events (SSE).
|
|
356
|
-
|
|
357
|
-
```python
|
|
358
|
-
from scale_gp_beta import SGPClient
|
|
359
|
-
|
|
360
|
-
client = SGPClient(
|
|
361
|
-
account_id="My Account ID",
|
|
362
|
-
)
|
|
363
|
-
|
|
364
|
-
stream = client.chat.completions.create(
|
|
365
|
-
messages=[{"foo": "bar"}],
|
|
366
|
-
model="model",
|
|
367
|
-
stream=True,
|
|
368
|
-
)
|
|
369
|
-
for completion in stream:
|
|
370
|
-
print(completion)
|
|
371
|
-
```
|
|
372
|
-
|
|
373
|
-
The async client uses the exact same interface.
|
|
374
|
-
|
|
375
|
-
```python
|
|
376
|
-
from scale_gp_beta import AsyncSGPClient
|
|
377
|
-
|
|
378
|
-
client = AsyncSGPClient(
|
|
379
|
-
account_id="My Account ID",
|
|
380
|
-
)
|
|
381
|
-
|
|
382
|
-
stream = await client.chat.completions.create(
|
|
383
|
-
messages=[{"foo": "bar"}],
|
|
384
|
-
model="model",
|
|
385
|
-
stream=True,
|
|
386
|
-
)
|
|
387
|
-
async for completion in stream:
|
|
388
|
-
print(completion)
|
|
389
|
-
```
|
|
390
|
-
|
|
391
354
|
## Using types
|
|
392
355
|
|
|
393
356
|
Nested request parameters are [TypedDicts](https://docs.python.org/3/library/typing.html#typing.TypedDict). Responses are [Pydantic models](https://docs.pydantic.dev) which also provide helper methods for things like:
|
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "scale-gp-beta"
|
|
3
|
-
version = "0.1.0-alpha.
|
|
3
|
+
version = "0.1.0-alpha.40"
|
|
4
4
|
description = "The official Python library for the Scale GP API"
|
|
5
5
|
dynamic = ["readme"]
|
|
6
6
|
license = "Apache-2.0"
|
|
7
7
|
authors = [
|
|
8
8
|
{ name = "Scale GP", email = "erich.woo@scale.com" },
|
|
9
9
|
]
|
|
10
|
+
|
|
10
11
|
dependencies = [
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
"httpx>=0.23.0, <1",
|
|
13
|
+
"pydantic>=1.9.0, <3",
|
|
14
|
+
"typing-extensions>=4.10, <5",
|
|
15
|
+
"anyio>=3.5.0, <5",
|
|
16
|
+
"distro>=1.7.0, <2",
|
|
17
|
+
"sniffio",
|
|
17
18
|
]
|
|
19
|
+
|
|
18
20
|
requires-python = ">= 3.9"
|
|
19
21
|
classifiers = [
|
|
20
22
|
"Typing :: Typed",
|
|
@@ -46,7 +48,7 @@ managed = true
|
|
|
46
48
|
# version pins are in requirements-dev.lock
|
|
47
49
|
dev-dependencies = [
|
|
48
50
|
"pyright==1.1.399",
|
|
49
|
-
"mypy",
|
|
51
|
+
"mypy==1.17",
|
|
50
52
|
"respx",
|
|
51
53
|
"pytest",
|
|
52
54
|
"pytest-asyncio",
|
|
@@ -12,40 +12,45 @@
|
|
|
12
12
|
-e file:.
|
|
13
13
|
aiohappyeyeballs==2.6.1
|
|
14
14
|
# via aiohttp
|
|
15
|
-
aiohttp==3.
|
|
15
|
+
aiohttp==3.13.2
|
|
16
16
|
# via httpx-aiohttp
|
|
17
17
|
# via scale-gp-beta
|
|
18
|
-
aiosignal==1.
|
|
18
|
+
aiosignal==1.4.0
|
|
19
19
|
# via aiohttp
|
|
20
|
-
annotated-types==0.
|
|
20
|
+
annotated-types==0.7.0
|
|
21
21
|
# via pydantic
|
|
22
|
-
anyio==4.
|
|
22
|
+
anyio==4.12.0
|
|
23
23
|
# via httpx
|
|
24
24
|
# via scale-gp-beta
|
|
25
|
-
argcomplete==3.
|
|
25
|
+
argcomplete==3.6.3
|
|
26
26
|
# via nox
|
|
27
27
|
async-timeout==5.0.1
|
|
28
28
|
# via aiohttp
|
|
29
|
-
attrs==25.
|
|
29
|
+
attrs==25.4.0
|
|
30
30
|
# via aiohttp
|
|
31
|
-
|
|
31
|
+
# via nox
|
|
32
|
+
backports-asyncio-runner==1.2.0
|
|
33
|
+
# via pytest-asyncio
|
|
34
|
+
certifi==2025.11.12
|
|
32
35
|
# via httpcore
|
|
33
36
|
# via httpx
|
|
34
|
-
colorlog==6.
|
|
37
|
+
colorlog==6.10.1
|
|
38
|
+
# via nox
|
|
39
|
+
dependency-groups==1.3.1
|
|
35
40
|
# via nox
|
|
36
|
-
dirty-equals==0.
|
|
37
|
-
distlib==0.
|
|
41
|
+
dirty-equals==0.11
|
|
42
|
+
distlib==0.4.0
|
|
38
43
|
# via virtualenv
|
|
39
|
-
distro==1.
|
|
44
|
+
distro==1.9.0
|
|
40
45
|
# via scale-gp-beta
|
|
41
|
-
exceptiongroup==1.
|
|
46
|
+
exceptiongroup==1.3.1
|
|
42
47
|
# via anyio
|
|
43
48
|
# via pytest
|
|
44
|
-
execnet==2.1.
|
|
49
|
+
execnet==2.1.2
|
|
45
50
|
# via pytest-xdist
|
|
46
|
-
filelock==3.
|
|
51
|
+
filelock==3.19.1
|
|
47
52
|
# via virtualenv
|
|
48
|
-
frozenlist==1.
|
|
53
|
+
frozenlist==1.8.0
|
|
49
54
|
# via aiohttp
|
|
50
55
|
# via aiosignal
|
|
51
56
|
h11==0.16.0
|
|
@@ -58,80 +63,87 @@ httpx==0.28.1
|
|
|
58
63
|
# via scale-gp-beta
|
|
59
64
|
httpx-aiohttp==0.1.9
|
|
60
65
|
# via scale-gp-beta
|
|
61
|
-
|
|
66
|
+
humanize==4.13.0
|
|
67
|
+
# via nox
|
|
68
|
+
idna==3.11
|
|
62
69
|
# via anyio
|
|
63
70
|
# via httpx
|
|
64
71
|
# via yarl
|
|
65
|
-
importlib-metadata==7.0
|
|
66
|
-
iniconfig==2.
|
|
72
|
+
importlib-metadata==8.7.0
|
|
73
|
+
iniconfig==2.1.0
|
|
67
74
|
# via pytest
|
|
68
75
|
markdown-it-py==3.0.0
|
|
69
76
|
# via rich
|
|
70
77
|
mdurl==0.1.2
|
|
71
78
|
# via markdown-it-py
|
|
72
|
-
multidict==6.
|
|
79
|
+
multidict==6.7.0
|
|
73
80
|
# via aiohttp
|
|
74
81
|
# via yarl
|
|
75
|
-
mypy==1.
|
|
76
|
-
mypy-extensions==1.
|
|
82
|
+
mypy==1.17.0
|
|
83
|
+
mypy-extensions==1.1.0
|
|
77
84
|
# via mypy
|
|
78
|
-
nodeenv==1.
|
|
85
|
+
nodeenv==1.9.1
|
|
79
86
|
# via pyright
|
|
80
|
-
nox==
|
|
81
|
-
packaging==
|
|
87
|
+
nox==2025.11.12
|
|
88
|
+
packaging==25.0
|
|
89
|
+
# via dependency-groups
|
|
82
90
|
# via nox
|
|
83
91
|
# via pytest
|
|
84
|
-
|
|
92
|
+
pathspec==0.12.1
|
|
93
|
+
# via mypy
|
|
94
|
+
platformdirs==4.4.0
|
|
85
95
|
# via virtualenv
|
|
86
|
-
pluggy==1.
|
|
96
|
+
pluggy==1.6.0
|
|
87
97
|
# via pytest
|
|
88
|
-
propcache==0.
|
|
98
|
+
propcache==0.4.1
|
|
89
99
|
# via aiohttp
|
|
90
100
|
# via yarl
|
|
91
|
-
pydantic==2.
|
|
101
|
+
pydantic==2.12.5
|
|
92
102
|
# via scale-gp-beta
|
|
93
|
-
pydantic-core==2.
|
|
103
|
+
pydantic-core==2.41.5
|
|
94
104
|
# via pydantic
|
|
95
|
-
pygments==2.
|
|
105
|
+
pygments==2.19.2
|
|
106
|
+
# via pytest
|
|
96
107
|
# via rich
|
|
97
108
|
pyright==1.1.399
|
|
98
|
-
pytest==8.
|
|
109
|
+
pytest==8.4.2
|
|
99
110
|
# via pytest-asyncio
|
|
100
111
|
# via pytest-xdist
|
|
101
|
-
pytest-asyncio==
|
|
102
|
-
pytest-xdist==3.
|
|
103
|
-
python-dateutil==2.
|
|
112
|
+
pytest-asyncio==1.2.0
|
|
113
|
+
pytest-xdist==3.8.0
|
|
114
|
+
python-dateutil==2.9.0.post0
|
|
104
115
|
# via time-machine
|
|
105
|
-
pytz==2023.3.post1
|
|
106
|
-
# via dirty-equals
|
|
107
116
|
respx==0.22.0
|
|
108
|
-
rich==
|
|
109
|
-
ruff==0.
|
|
110
|
-
|
|
111
|
-
# via nodeenv
|
|
112
|
-
six==1.16.0
|
|
117
|
+
rich==14.2.0
|
|
118
|
+
ruff==0.14.7
|
|
119
|
+
six==1.17.0
|
|
113
120
|
# via python-dateutil
|
|
114
|
-
sniffio==1.3.
|
|
115
|
-
# via anyio
|
|
121
|
+
sniffio==1.3.1
|
|
116
122
|
# via scale-gp-beta
|
|
117
|
-
time-machine==2.
|
|
118
|
-
tomli==2.0
|
|
123
|
+
time-machine==2.19.0
|
|
124
|
+
tomli==2.3.0
|
|
125
|
+
# via dependency-groups
|
|
119
126
|
# via mypy
|
|
127
|
+
# via nox
|
|
120
128
|
# via pytest
|
|
121
|
-
typing-extensions==4.
|
|
129
|
+
typing-extensions==4.15.0
|
|
130
|
+
# via aiosignal
|
|
122
131
|
# via anyio
|
|
132
|
+
# via exceptiongroup
|
|
123
133
|
# via multidict
|
|
124
134
|
# via mypy
|
|
125
135
|
# via pydantic
|
|
126
136
|
# via pydantic-core
|
|
127
137
|
# via pyright
|
|
138
|
+
# via pytest-asyncio
|
|
128
139
|
# via scale-gp-beta
|
|
129
140
|
# via typing-inspection
|
|
130
|
-
|
|
141
|
+
# via virtualenv
|
|
142
|
+
typing-inspection==0.4.2
|
|
131
143
|
# via pydantic
|
|
132
|
-
virtualenv==20.
|
|
144
|
+
virtualenv==20.35.4
|
|
133
145
|
# via nox
|
|
134
|
-
yarl==1.
|
|
146
|
+
yarl==1.22.0
|
|
135
147
|
# via aiohttp
|
|
136
|
-
zipp==3.
|
|
148
|
+
zipp==3.23.0
|
|
137
149
|
# via importlib-metadata
|
|
@@ -12,28 +12,28 @@
|
|
|
12
12
|
-e file:.
|
|
13
13
|
aiohappyeyeballs==2.6.1
|
|
14
14
|
# via aiohttp
|
|
15
|
-
aiohttp==3.
|
|
15
|
+
aiohttp==3.13.2
|
|
16
16
|
# via httpx-aiohttp
|
|
17
17
|
# via scale-gp-beta
|
|
18
|
-
aiosignal==1.
|
|
18
|
+
aiosignal==1.4.0
|
|
19
19
|
# via aiohttp
|
|
20
|
-
annotated-types==0.
|
|
20
|
+
annotated-types==0.7.0
|
|
21
21
|
# via pydantic
|
|
22
|
-
anyio==4.
|
|
22
|
+
anyio==4.12.0
|
|
23
23
|
# via httpx
|
|
24
24
|
# via scale-gp-beta
|
|
25
25
|
async-timeout==5.0.1
|
|
26
26
|
# via aiohttp
|
|
27
|
-
attrs==25.
|
|
27
|
+
attrs==25.4.0
|
|
28
28
|
# via aiohttp
|
|
29
|
-
certifi==
|
|
29
|
+
certifi==2025.11.12
|
|
30
30
|
# via httpcore
|
|
31
31
|
# via httpx
|
|
32
|
-
distro==1.
|
|
32
|
+
distro==1.9.0
|
|
33
33
|
# via scale-gp-beta
|
|
34
|
-
exceptiongroup==1.
|
|
34
|
+
exceptiongroup==1.3.1
|
|
35
35
|
# via anyio
|
|
36
|
-
frozenlist==1.
|
|
36
|
+
frozenlist==1.8.0
|
|
37
37
|
# via aiohttp
|
|
38
38
|
# via aiosignal
|
|
39
39
|
h11==0.16.0
|
|
@@ -45,31 +45,32 @@ httpx==0.28.1
|
|
|
45
45
|
# via scale-gp-beta
|
|
46
46
|
httpx-aiohttp==0.1.9
|
|
47
47
|
# via scale-gp-beta
|
|
48
|
-
idna==3.
|
|
48
|
+
idna==3.11
|
|
49
49
|
# via anyio
|
|
50
50
|
# via httpx
|
|
51
51
|
# via yarl
|
|
52
|
-
multidict==6.
|
|
52
|
+
multidict==6.7.0
|
|
53
53
|
# via aiohttp
|
|
54
54
|
# via yarl
|
|
55
|
-
propcache==0.
|
|
55
|
+
propcache==0.4.1
|
|
56
56
|
# via aiohttp
|
|
57
57
|
# via yarl
|
|
58
|
-
pydantic==2.
|
|
58
|
+
pydantic==2.12.5
|
|
59
59
|
# via scale-gp-beta
|
|
60
|
-
pydantic-core==2.
|
|
60
|
+
pydantic-core==2.41.5
|
|
61
61
|
# via pydantic
|
|
62
|
-
sniffio==1.3.
|
|
63
|
-
# via anyio
|
|
62
|
+
sniffio==1.3.1
|
|
64
63
|
# via scale-gp-beta
|
|
65
|
-
typing-extensions==4.
|
|
64
|
+
typing-extensions==4.15.0
|
|
65
|
+
# via aiosignal
|
|
66
66
|
# via anyio
|
|
67
|
+
# via exceptiongroup
|
|
67
68
|
# via multidict
|
|
68
69
|
# via pydantic
|
|
69
70
|
# via pydantic-core
|
|
70
71
|
# via scale-gp-beta
|
|
71
72
|
# via typing-inspection
|
|
72
|
-
typing-inspection==0.4.
|
|
73
|
+
typing-inspection==0.4.2
|
|
73
74
|
# via pydantic
|
|
74
|
-
yarl==1.
|
|
75
|
+
yarl==1.22.0
|
|
75
76
|
# via aiohttp
|
|
@@ -1247,9 +1247,12 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
|
|
|
1247
1247
|
*,
|
|
1248
1248
|
cast_to: Type[ResponseT],
|
|
1249
1249
|
body: Body | None = None,
|
|
1250
|
+
files: RequestFiles | None = None,
|
|
1250
1251
|
options: RequestOptions = {},
|
|
1251
1252
|
) -> ResponseT:
|
|
1252
|
-
opts = FinalRequestOptions.construct(
|
|
1253
|
+
opts = FinalRequestOptions.construct(
|
|
1254
|
+
method="patch", url=path, json_data=body, files=to_httpx_files(files), **options
|
|
1255
|
+
)
|
|
1253
1256
|
return self.request(cast_to, opts)
|
|
1254
1257
|
|
|
1255
1258
|
def put(
|
|
@@ -1767,9 +1770,12 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
|
|
|
1767
1770
|
*,
|
|
1768
1771
|
cast_to: Type[ResponseT],
|
|
1769
1772
|
body: Body | None = None,
|
|
1773
|
+
files: RequestFiles | None = None,
|
|
1770
1774
|
options: RequestOptions = {},
|
|
1771
1775
|
) -> ResponseT:
|
|
1772
|
-
opts = FinalRequestOptions.construct(
|
|
1776
|
+
opts = FinalRequestOptions.construct(
|
|
1777
|
+
method="patch", url=path, json_data=body, files=await async_to_httpx_files(files), **options
|
|
1778
|
+
)
|
|
1773
1779
|
return await self.request(cast_to, opts)
|
|
1774
1780
|
|
|
1775
1781
|
async def put(
|