studyfetch-sdk 0.1.0a19__tar.gz → 0.1.0a21__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.
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/.gitignore +0 -1
- studyfetch_sdk-0.1.0a21/.release-please-manifest.json +3 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/CHANGELOG.md +38 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/PKG-INFO +1 -1
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/api.md +5 -175
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/pyproject.toml +1 -1
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_models.py +23 -2
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_version.py +1 -1
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/__init__.py +6 -104
- studyfetch_sdk-0.1.0a21/src/studyfetch_sdk/resources/v1/chat.py +246 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/materials/materials.py +304 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/materials/upload.py +30 -14
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/v1.py +20 -244
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/__init__.py +3 -22
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/data_analyst_send_message_params.py → studyfetch_sdk-0.1.0a21/src/studyfetch_sdk/types/v1/chat_stream_params.py +19 -13
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/component_create_params.py +24 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/component_generate_embed_params.py +7 -1
- studyfetch_sdk-0.1.0a21/src/studyfetch_sdk/types/v1/generated_material.py +65 -0
- studyfetch_sdk-0.1.0a21/src/studyfetch_sdk/types/v1/material_generate_and_process_params.py +38 -0
- studyfetch_sdk-0.1.0a21/src/studyfetch_sdk/types/v1/material_generate_params.py +32 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/materials/upload_complete_upload_params.py +2 -5
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/materials/upload_create_presigned_url_params.py +3 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/materials/upload_upload_file_and_process_params.py +4 -1
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/materials/upload_upload_file_params.py +3 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/api_resources/v1/materials/test_upload.py +18 -18
- studyfetch_sdk-0.1.0a21/tests/api_resources/v1/test_chat.py +130 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/api_resources/v1/test_components.py +24 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/api_resources/v1/test_materials.py +221 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/test_models.py +28 -1
- studyfetch_sdk-0.1.0a19/.release-please-manifest.json +0 -3
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/audio_recaps/__init__.py +0 -33
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/audio_recaps/audio_recaps.py +0 -328
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/audio_recaps/sections.py +0 -250
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/chat/__init__.py +0 -47
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/chat/chat.py +0 -574
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/chat/sessions.py +0 -222
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/chat/test.py +0 -190
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/data_analyst/__init__.py +0 -47
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/data_analyst/data_analyst.py +0 -582
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/data_analyst/sessions.py +0 -222
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/data_analyst/test.py +0 -190
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/explainers.py +0 -441
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/flashcards.py +0 -783
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/scenarios/__init__.py +0 -61
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/scenarios/component.py +0 -426
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/scenarios/scenarios.py +0 -936
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/scenarios/sessions.py +0 -236
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/scenarios/submissions/__init__.py +0 -33
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/scenarios/submissions/submissions.py +0 -102
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/scenarios/submissions/user.py +0 -210
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/tests/__init__.py +0 -33
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/tests/component.py +0 -160
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/tests/tests.py +0 -682
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/upload/__init__.py +0 -33
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/upload/component.py +0 -572
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/resources/v1/upload/upload.py +0 -102
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/audio_recaps/__init__.py +0 -3
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/chat/__init__.py +0 -5
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/chat/session_retrieve_params.py +0 -11
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/chat_get_session_params.py +0 -13
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/chat_send_message_params.py +0 -54
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/chat_stream_params.py +0 -28
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/data_analyst/__init__.py +0 -5
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/data_analyst/session_retrieve_params.py +0 -11
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/data_analyst_retrieve_session_params.py +0 -13
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/data_analyst_stream_params.py +0 -28
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/explainer_create_params.py +0 -45
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/explainer_handle_webhook_params.py +0 -53
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/flashcard_batch_process_params.py +0 -36
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/flashcard_batch_process_response.py +0 -39
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/flashcard_get_algorithm_response.py +0 -37
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/flashcard_get_all_params.py +0 -23
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/flashcard_get_due_params.py +0 -19
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/flashcard_get_stats_params.py +0 -17
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/flashcard_get_types_response.py +0 -14
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/flashcard_rate_params.py +0 -23
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/scenario_create_params.py +0 -48
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/scenario_submit_answer_params.py +0 -18
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/scenario_update_params.py +0 -45
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/scenarios/__init__.py +0 -5
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/scenarios/component_update_params.py +0 -45
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/scenarios/submissions/__init__.py +0 -3
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/test_create_params.py +0 -20
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/test_retake_params.py +0 -14
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/test_submit_answer_params.py +0 -20
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/test_submit_params.py +0 -14
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/tests/__init__.py +0 -3
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/upload/__init__.py +0 -11
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/upload/component_complete_upload_params.py +0 -20
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/upload/component_complete_upload_response.py +0 -16
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/upload/component_get_presigned_url_params.py +0 -23
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/upload/component_get_presigned_url_response.py +0 -15
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/upload/component_upload_file_params.py +0 -21
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/upload/component_upload_url_params.py +0 -23
- studyfetch_sdk-0.1.0a19/src/studyfetch_sdk/types/v1/upload/file_upload_response.py +0 -24
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/audio_recaps/test_sections.py +0 -210
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/chat/test_sessions.py +0 -170
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/chat/test_test.py +0 -134
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/data_analyst/test_sessions.py +0 -170
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/data_analyst/test_test.py +0 -134
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/embed/__init__.py +0 -1
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/materials/__init__.py +0 -1
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/scenarios/__init__.py +0 -1
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/scenarios/submissions/__init__.py +0 -1
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/scenarios/submissions/test_user.py +0 -162
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/scenarios/test_component.py +0 -320
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/scenarios/test_sessions.py +0 -190
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/test_audio_recaps.py +0 -246
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/test_chat.py +0 -444
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/test_data_analyst.py +0 -444
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/test_explainers.py +0 -350
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/test_flashcards.py +0 -760
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/test_scenarios.py +0 -684
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/test_tests.py +0 -604
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/tests/__init__.py +0 -1
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/tests/test_component.py +0 -106
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/upload/__init__.py +0 -1
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/upload/test_component.py +0 -476
- studyfetch_sdk-0.1.0a19/tests/api_resources/v1/usage/__init__.py +0 -1
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/CONTRIBUTING.md +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/LICENSE +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/README.md +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/SECURITY.md +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/bin/check-release-environment +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/bin/publish-pypi +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/examples/.keep +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/mypy.ini +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/noxfile.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/release-please-config.json +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/requirements-dev.lock +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/requirements.lock +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_base_client.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_client.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_compat.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_constants.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_exceptions.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_files.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_qs.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_resource.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_streaming.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_types.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_utils/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_utils/_logs.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_utils/_proxy.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_utils/_reflection.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_utils/_resources_proxy.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_utils/_streams.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_utils/_sync.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_utils/_transform.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_utils/_typing.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/_utils/_utils.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/lib/.keep +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/py.typed +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/assignment_grader.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/components.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/embed/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/embed/component.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/embed/embed.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/folders.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/materials/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/materials/bulk.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/materials/test.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/usage/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/usage/analyst.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/usage/usage.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/assignment_grader_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/assignment_grader_get_all_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/assignment_grader_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/component.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/component_generate_embed_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/component_list_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/component_list_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/component_update_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/content_param.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/embed/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/embed/component_interact_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/embed/component_retrieve_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/embed_get_theme_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/embed_verify_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/folder_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/folder_list_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/folder_update_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/material.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/material_batch_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/material_batch_create_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/material_create_and_process_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/material_create_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/material_debug_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/material_get_download_url_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/material_get_download_url_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/material_list_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/material_list_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/material_move_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/material_rename_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/material_search_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/material_search_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/materials/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/materials/bulk_move_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/materials/bulk_move_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/materials/test_perform_ocr_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/materials/test_process_epub_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/materials/test_process_image_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/materials/test_process_video_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/materials/upload_create_presigned_url_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/materials/upload_upload_from_url_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/materials/upload_upload_url_and_process_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/usage/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/usage/analyst_get_test_questions_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/usage/analyst_list_chat_messages_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/usage/analyst_list_chat_messages_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/usage/analyst_list_events_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/usage_get_stats_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/usage_get_summary_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/types/v1/usage_list_events_params.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/api_resources/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/api_resources/test_v1.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/api_resources/v1/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19/tests/api_resources/v1/audio_recaps → studyfetch_sdk-0.1.0a21/tests/api_resources/v1/embed}/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/api_resources/v1/embed/test_component.py +0 -0
- {studyfetch_sdk-0.1.0a19/tests/api_resources/v1/chat → studyfetch_sdk-0.1.0a21/tests/api_resources/v1/materials}/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/api_resources/v1/materials/test_bulk.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/api_resources/v1/materials/test_test.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/api_resources/v1/test_assignment_grader.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/api_resources/v1/test_embed.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/api_resources/v1/test_folders.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/api_resources/v1/test_usage.py +0 -0
- {studyfetch_sdk-0.1.0a19/tests/api_resources/v1/data_analyst → studyfetch_sdk-0.1.0a21/tests/api_resources/v1/usage}/__init__.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/api_resources/v1/usage/test_analyst.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/conftest.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/sample_file.txt +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/test_client.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/test_deepcopy.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/test_extract_files.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/test_files.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/test_qs.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/test_required_args.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/test_response.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/test_streaming.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/test_transform.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/test_utils/test_proxy.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/test_utils/test_typing.py +0 -0
- {studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/tests/utils.py +0 -0
@@ -1,5 +1,43 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.1.0-alpha.21 (2025-07-26)
|
4
|
+
|
5
|
+
Full Changelog: [v0.1.0-alpha.20...v0.1.0-alpha.21](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/compare/v0.1.0-alpha.20...v0.1.0-alpha.21)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([598ed4a](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/598ed4aa9870a220f567090c2c22a380b6e8a39d))
|
10
|
+
* **api:** api update ([1ca67b9](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/1ca67b9565830a352b95bb6509155db8b4abf2a7))
|
11
|
+
* **api:** api update ([edde35c](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/edde35c095d711d48332be135c7a6618350864df))
|
12
|
+
* **api:** api update ([4891c2c](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/4891c2ca88ad4f3886468c5fef0dd54626640bbd))
|
13
|
+
* **api:** api update ([f988365](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/f9883659a11e1b8c07bc7fc0ba66ee7dac060db4))
|
14
|
+
* **api:** manual updates ([ec6c3fd](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/ec6c3fd8421da42c5ba040640b65f705faa256e3))
|
15
|
+
* **api:** manual updates ([be7ba51](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/be7ba5130b9a741ad2344fbe28713d265a6b3300))
|
16
|
+
* **api:** manual updates ([429fb80](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/429fb8066d183997b7e7b4ac6fb604d4d179f974))
|
17
|
+
* **api:** manual updates ([c31d639](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/c31d6392cf5cb03569052af6c32338822b78d9ba))
|
18
|
+
|
19
|
+
|
20
|
+
### Chores
|
21
|
+
|
22
|
+
* **project:** add settings file for vscode ([5149c86](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/5149c862af1e8fa4ecff6078c59e69b756346a8c))
|
23
|
+
|
24
|
+
## 0.1.0-alpha.20 (2025-07-24)
|
25
|
+
|
26
|
+
Full Changelog: [v0.1.0-alpha.19...v0.1.0-alpha.20](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/compare/v0.1.0-alpha.19...v0.1.0-alpha.20)
|
27
|
+
|
28
|
+
### Features
|
29
|
+
|
30
|
+
* **api:** api update ([70afd1c](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/70afd1caca9f5bf0604307b5b11fa089de13aa2f))
|
31
|
+
* **api:** api update ([f9a7523](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/f9a752370f78e2eb2625f4f058bcbd5f119e9485))
|
32
|
+
* **api:** api update ([6497d32](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/6497d3283ad30b5f4ad72e5087e71856658e28f5))
|
33
|
+
* **api:** manual updates ([ac9ce17](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/ac9ce1764e32ced18fd066a3d08ddcf22d10fa09))
|
34
|
+
* **api:** manual updates ([995ae63](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/995ae63faaced95f11d606bcc98910e367f7154e))
|
35
|
+
|
36
|
+
|
37
|
+
### Bug Fixes
|
38
|
+
|
39
|
+
* **parsing:** parse extra field types ([11721ef](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/commit/11721effa28725eb8143b9752893463c75c10957))
|
40
|
+
|
3
41
|
## 0.1.0-alpha.19 (2025-07-22)
|
4
42
|
|
5
43
|
Full Changelog: [v0.1.0-alpha.18...v0.1.0-alpha.19](https://github.com/GoStudyFetchGo/studyfetch-sdk-python/compare/v0.1.0-alpha.18...v0.1.0-alpha.19)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: studyfetch_sdk
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.0a21
|
4
4
|
Summary: The official Python library for the studyfetch-sdk API
|
5
5
|
Project-URL: Homepage, https://github.com/GoStudyFetchGo/studyfetch-sdk-python
|
6
6
|
Project-URL: Repository, https://github.com/GoStudyFetchGo/studyfetch-sdk-python
|
@@ -11,6 +11,7 @@ Types:
|
|
11
11
|
```python
|
12
12
|
from studyfetch_sdk.types.v1 import (
|
13
13
|
Content,
|
14
|
+
GeneratedMaterial,
|
14
15
|
Material,
|
15
16
|
MaterialListResponse,
|
16
17
|
MaterialBatchCreateResponse,
|
@@ -29,6 +30,8 @@ Methods:
|
|
29
30
|
- <code title="post /api/v1/materials/batch">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">batch_create</a>(\*\*<a href="src/studyfetch_sdk/types/v1/material_batch_create_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/material_batch_create_response.py">MaterialBatchCreateResponse</a></code>
|
30
31
|
- <code title="post /api/v1/materials/upload-and-process">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">create_and_process</a>(\*\*<a href="src/studyfetch_sdk/types/v1/material_create_and_process_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/material.py">Material</a></code>
|
31
32
|
- <code title="get /api/v1/materials/{id}/debug">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">debug</a>(id) -> <a href="./src/studyfetch_sdk/types/v1/material_debug_response.py">MaterialDebugResponse</a></code>
|
33
|
+
- <code title="post /api/v1/materials/generate">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">generate</a>(\*\*<a href="src/studyfetch_sdk/types/v1/material_generate_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/generated_material.py">GeneratedMaterial</a></code>
|
34
|
+
- <code title="post /api/v1/materials/generate-and-process">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">generate_and_process</a>(\*\*<a href="src/studyfetch_sdk/types/v1/material_generate_and_process_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/generated_material.py">GeneratedMaterial</a></code>
|
32
35
|
- <code title="get /api/v1/materials/{id}/download-url">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">get_download_url</a>(id, \*\*<a href="src/studyfetch_sdk/types/v1/material_get_download_url_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/material_get_download_url_response.py">MaterialGetDownloadURLResponse</a></code>
|
33
36
|
- <code title="post /api/v1/materials/{id}/move">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">move</a>(id, \*\*<a href="src/studyfetch_sdk/types/v1/material_move_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/material.py">Material</a></code>
|
34
37
|
- <code title="post /api/v1/materials/{id}/rename">client.v1.materials.<a href="./src/studyfetch_sdk/resources/v1/materials/materials.py">rename</a>(id, \*\*<a href="src/studyfetch_sdk/types/v1/material_rename_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/material.py">Material</a></code>
|
@@ -154,161 +157,6 @@ Methods:
|
|
154
157
|
- <code title="get /api/v1/embed/component/{componentId}">client.v1.embed.component.<a href="./src/studyfetch_sdk/resources/v1/embed/component.py">retrieve</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/embed/component_retrieve_params.py">params</a>) -> None</code>
|
155
158
|
- <code title="post /api/v1/embed/component/{componentId}/interact">client.v1.embed.component.<a href="./src/studyfetch_sdk/resources/v1/embed/component.py">interact</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/embed/component_interact_params.py">params</a>) -> None</code>
|
156
159
|
|
157
|
-
## Chat
|
158
|
-
|
159
|
-
Types:
|
160
|
-
|
161
|
-
```python
|
162
|
-
from studyfetch_sdk.types.v1 import Interaction
|
163
|
-
```
|
164
|
-
|
165
|
-
Methods:
|
166
|
-
|
167
|
-
- <code title="post /api/v1/chat/history">client.v1.chat.<a href="./src/studyfetch_sdk/resources/v1/chat/chat.py">get_history</a>() -> None</code>
|
168
|
-
- <code title="get /api/v1/chat/session/{sessionId}">client.v1.chat.<a href="./src/studyfetch_sdk/resources/v1/chat/chat.py">get_session</a>(session_id, \*\*<a href="src/studyfetch_sdk/types/v1/chat_get_session_params.py">params</a>) -> None</code>
|
169
|
-
- <code title="post /api/v1/chat/followups">client.v1.chat.<a href="./src/studyfetch_sdk/resources/v1/chat/chat.py">send_followups</a>() -> None</code>
|
170
|
-
- <code title="post /api/v1/chat/message">client.v1.chat.<a href="./src/studyfetch_sdk/resources/v1/chat/chat.py">send_message</a>(\*\*<a href="src/studyfetch_sdk/types/v1/chat_send_message_params.py">params</a>) -> None</code>
|
171
|
-
- <code title="post /api/v1/chat/stream">client.v1.chat.<a href="./src/studyfetch_sdk/resources/v1/chat/chat.py">stream</a>(\*\*<a href="src/studyfetch_sdk/types/v1/chat_stream_params.py">params</a>) -> None</code>
|
172
|
-
|
173
|
-
### Sessions
|
174
|
-
|
175
|
-
Methods:
|
176
|
-
|
177
|
-
- <code title="post /api/v1/chat/sessions/create">client.v1.chat.sessions.<a href="./src/studyfetch_sdk/resources/v1/chat/sessions.py">create</a>() -> None</code>
|
178
|
-
- <code title="get /api/v1/chat/sessions/{userId}">client.v1.chat.sessions.<a href="./src/studyfetch_sdk/resources/v1/chat/sessions.py">retrieve</a>(user_id, \*\*<a href="src/studyfetch_sdk/types/v1/chat/session_retrieve_params.py">params</a>) -> None</code>
|
179
|
-
|
180
|
-
### Test
|
181
|
-
|
182
|
-
Methods:
|
183
|
-
|
184
|
-
- <code title="post /api/v1/chat/test/image-citation">client.v1.chat.test.<a href="./src/studyfetch_sdk/resources/v1/chat/test.py">cite_image</a>() -> None</code>
|
185
|
-
- <code title="post /api/v1/chat/test/image">client.v1.chat.test.<a href="./src/studyfetch_sdk/resources/v1/chat/test.py">upload_image</a>() -> None</code>
|
186
|
-
|
187
|
-
## Tests
|
188
|
-
|
189
|
-
Methods:
|
190
|
-
|
191
|
-
- <code title="post /api/v1/tests/create">client.v1.tests.<a href="./src/studyfetch_sdk/resources/v1/tests/tests.py">create</a>(\*\*<a href="src/studyfetch_sdk/types/v1/test_create_params.py">params</a>) -> None</code>
|
192
|
-
- <code title="get /api/v1/tests/{testId}">client.v1.tests.<a href="./src/studyfetch_sdk/resources/v1/tests/tests.py">retrieve</a>(test_id) -> None</code>
|
193
|
-
- <code title="get /api/v1/tests/{testId}/results">client.v1.tests.<a href="./src/studyfetch_sdk/resources/v1/tests/tests.py">get_results</a>(test_id) -> None</code>
|
194
|
-
- <code title="post /api/v1/tests/{testId}/retake">client.v1.tests.<a href="./src/studyfetch_sdk/resources/v1/tests/tests.py">retake</a>(test_id, \*\*<a href="src/studyfetch_sdk/types/v1/test_retake_params.py">params</a>) -> None</code>
|
195
|
-
- <code title="post /api/v1/tests/{testId}/submit">client.v1.tests.<a href="./src/studyfetch_sdk/resources/v1/tests/tests.py">submit</a>(test_id, \*\*<a href="src/studyfetch_sdk/types/v1/test_submit_params.py">params</a>) -> None</code>
|
196
|
-
- <code title="post /api/v1/tests/{testId}/submit-answer">client.v1.tests.<a href="./src/studyfetch_sdk/resources/v1/tests/tests.py">submit_answer</a>(test_id, \*\*<a href="src/studyfetch_sdk/types/v1/test_submit_answer_params.py">params</a>) -> None</code>
|
197
|
-
|
198
|
-
### Component
|
199
|
-
|
200
|
-
Methods:
|
201
|
-
|
202
|
-
- <code title="post /api/v1/tests/component/{componentId}/list">client.v1.tests.component.<a href="./src/studyfetch_sdk/resources/v1/tests/component.py">list</a>(component_id) -> None</code>
|
203
|
-
|
204
|
-
## AudioRecaps
|
205
|
-
|
206
|
-
Methods:
|
207
|
-
|
208
|
-
- <code title="post /api/v1/audio-recaps/create">client.v1.audio_recaps.<a href="./src/studyfetch_sdk/resources/v1/audio_recaps/audio_recaps.py">create</a>() -> None</code>
|
209
|
-
- <code title="get /api/v1/audio-recaps/{recapId}/get">client.v1.audio_recaps.<a href="./src/studyfetch_sdk/resources/v1/audio_recaps/audio_recaps.py">retrieve</a>(recap_id) -> None</code>
|
210
|
-
- <code title="post /api/v1/audio-recaps/{recapId}/ask-question">client.v1.audio_recaps.<a href="./src/studyfetch_sdk/resources/v1/audio_recaps/audio_recaps.py">ask_question</a>(recap_id) -> None</code>
|
211
|
-
|
212
|
-
### Sections
|
213
|
-
|
214
|
-
Methods:
|
215
|
-
|
216
|
-
- <code title="get /api/v1/audio-recaps/{recapId}/sections/{sectionId}">client.v1.audio_recaps.sections.<a href="./src/studyfetch_sdk/resources/v1/audio_recaps/sections.py">retrieve</a>(section_id, \*, recap_id) -> None</code>
|
217
|
-
- <code title="get /api/v1/audio-recaps/{recapId}/sections">client.v1.audio_recaps.sections.<a href="./src/studyfetch_sdk/resources/v1/audio_recaps/sections.py">list</a>(recap_id) -> None</code>
|
218
|
-
|
219
|
-
## Flashcards
|
220
|
-
|
221
|
-
Types:
|
222
|
-
|
223
|
-
```python
|
224
|
-
from studyfetch_sdk.types.v1 import (
|
225
|
-
FlashcardBatchProcessResponse,
|
226
|
-
FlashcardGetAlgorithmResponse,
|
227
|
-
FlashcardGetTypesResponse,
|
228
|
-
)
|
229
|
-
```
|
230
|
-
|
231
|
-
Methods:
|
232
|
-
|
233
|
-
- <code title="post /api/v1/flashcards/{componentId}/batch">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">batch_process</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/flashcard_batch_process_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/flashcard_batch_process_response.py">FlashcardBatchProcessResponse</a></code>
|
234
|
-
- <code title="get /api/v1/flashcards/algorithm">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">get_algorithm</a>() -> <a href="./src/studyfetch_sdk/types/v1/flashcard_get_algorithm_response.py">FlashcardGetAlgorithmResponse</a></code>
|
235
|
-
- <code title="get /api/v1/flashcards/{componentId}/all">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">get_all</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/flashcard_get_all_params.py">params</a>) -> None</code>
|
236
|
-
- <code title="get /api/v1/flashcards/{componentId}/due">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">get_due</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/flashcard_get_due_params.py">params</a>) -> None</code>
|
237
|
-
- <code title="get /api/v1/flashcards/{componentId}/stats">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">get_stats</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/flashcard_get_stats_params.py">params</a>) -> None</code>
|
238
|
-
- <code title="get /api/v1/flashcards/types">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">get_types</a>() -> <a href="./src/studyfetch_sdk/types/v1/flashcard_get_types_response.py">FlashcardGetTypesResponse</a></code>
|
239
|
-
- <code title="post /api/v1/flashcards/{componentId}/rate">client.v1.flashcards.<a href="./src/studyfetch_sdk/resources/v1/flashcards.py">rate</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/flashcard_rate_params.py">params</a>) -> None</code>
|
240
|
-
|
241
|
-
## Scenarios
|
242
|
-
|
243
|
-
Types:
|
244
|
-
|
245
|
-
```python
|
246
|
-
from studyfetch_sdk.types.v1 import Scenario, UpdateScenario
|
247
|
-
```
|
248
|
-
|
249
|
-
Methods:
|
250
|
-
|
251
|
-
- <code title="post /api/v1/scenarios">client.v1.scenarios.<a href="./src/studyfetch_sdk/resources/v1/scenarios/scenarios.py">create</a>(\*\*<a href="src/studyfetch_sdk/types/v1/scenario_create_params.py">params</a>) -> None</code>
|
252
|
-
- <code title="get /api/v1/scenarios/{id}">client.v1.scenarios.<a href="./src/studyfetch_sdk/resources/v1/scenarios/scenarios.py">retrieve</a>(id) -> None</code>
|
253
|
-
- <code title="put /api/v1/scenarios/{id}">client.v1.scenarios.<a href="./src/studyfetch_sdk/resources/v1/scenarios/scenarios.py">update</a>(id, \*\*<a href="src/studyfetch_sdk/types/v1/scenario_update_params.py">params</a>) -> None</code>
|
254
|
-
- <code title="get /api/v1/scenarios">client.v1.scenarios.<a href="./src/studyfetch_sdk/resources/v1/scenarios/scenarios.py">list</a>() -> None</code>
|
255
|
-
- <code title="delete /api/v1/scenarios/{id}">client.v1.scenarios.<a href="./src/studyfetch_sdk/resources/v1/scenarios/scenarios.py">delete</a>(id) -> None</code>
|
256
|
-
- <code title="get /api/v1/scenarios/{id}/stats">client.v1.scenarios.<a href="./src/studyfetch_sdk/resources/v1/scenarios/scenarios.py">get_stats</a>(id) -> None</code>
|
257
|
-
- <code title="post /api/v1/scenarios/{id}/submit">client.v1.scenarios.<a href="./src/studyfetch_sdk/resources/v1/scenarios/scenarios.py">submit_answer</a>(id, \*\*<a href="src/studyfetch_sdk/types/v1/scenario_submit_answer_params.py">params</a>) -> None</code>
|
258
|
-
|
259
|
-
### Component
|
260
|
-
|
261
|
-
Methods:
|
262
|
-
|
263
|
-
- <code title="get /api/v1/scenarios/component/{componentId}">client.v1.scenarios.component.<a href="./src/studyfetch_sdk/resources/v1/scenarios/component.py">retrieve</a>(component_id) -> None</code>
|
264
|
-
- <code title="put /api/v1/scenarios/component/{componentId}">client.v1.scenarios.component.<a href="./src/studyfetch_sdk/resources/v1/scenarios/component.py">update</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/scenarios/component_update_params.py">params</a>) -> None</code>
|
265
|
-
- <code title="delete /api/v1/scenarios/component/{componentId}">client.v1.scenarios.component.<a href="./src/studyfetch_sdk/resources/v1/scenarios/component.py">delete</a>(component_id) -> None</code>
|
266
|
-
|
267
|
-
### Sessions
|
268
|
-
|
269
|
-
Methods:
|
270
|
-
|
271
|
-
- <code title="put /api/v1/scenarios/sessions/{sessionId}/complete">client.v1.scenarios.sessions.<a href="./src/studyfetch_sdk/resources/v1/scenarios/sessions.py">complete</a>(session_id) -> None</code>
|
272
|
-
- <code title="post /api/v1/scenarios/{id}/sessions/start">client.v1.scenarios.sessions.<a href="./src/studyfetch_sdk/resources/v1/scenarios/sessions.py">start</a>(id) -> None</code>
|
273
|
-
|
274
|
-
### Submissions
|
275
|
-
|
276
|
-
#### User
|
277
|
-
|
278
|
-
Methods:
|
279
|
-
|
280
|
-
- <code title="get /api/v1/scenarios/submissions/user">client.v1.scenarios.submissions.user.<a href="./src/studyfetch_sdk/resources/v1/scenarios/submissions/user.py">get_all</a>() -> None</code>
|
281
|
-
- <code title="get /api/v1/scenarios/{id}/submissions/user">client.v1.scenarios.submissions.user.<a href="./src/studyfetch_sdk/resources/v1/scenarios/submissions/user.py">get_by_scenario</a>(id) -> None</code>
|
282
|
-
|
283
|
-
## Explainers
|
284
|
-
|
285
|
-
Methods:
|
286
|
-
|
287
|
-
- <code title="post /api/v1/explainers/create">client.v1.explainers.<a href="./src/studyfetch_sdk/resources/v1/explainers.py">create</a>(\*\*<a href="src/studyfetch_sdk/types/v1/explainer_create_params.py">params</a>) -> None</code>
|
288
|
-
- <code title="get /api/v1/explainers/component/{componentId}">client.v1.explainers.<a href="./src/studyfetch_sdk/resources/v1/explainers.py">retrieve</a>(component_id) -> None</code>
|
289
|
-
- <code title="post /api/v1/explainers/webhook">client.v1.explainers.<a href="./src/studyfetch_sdk/resources/v1/explainers.py">handle_webhook</a>(\*\*<a href="src/studyfetch_sdk/types/v1/explainer_handle_webhook_params.py">params</a>) -> None</code>
|
290
|
-
|
291
|
-
## Upload
|
292
|
-
|
293
|
-
### Component
|
294
|
-
|
295
|
-
Types:
|
296
|
-
|
297
|
-
```python
|
298
|
-
from studyfetch_sdk.types.v1.upload import (
|
299
|
-
FileUploadResponse,
|
300
|
-
ComponentCompleteUploadResponse,
|
301
|
-
ComponentGetPresignedURLResponse,
|
302
|
-
)
|
303
|
-
```
|
304
|
-
|
305
|
-
Methods:
|
306
|
-
|
307
|
-
- <code title="post /api/v1/upload/component/{componentId}/complete">client.v1.upload.component.<a href="./src/studyfetch_sdk/resources/v1/upload/component.py">complete_upload</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/upload/component_complete_upload_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/upload/component_complete_upload_response.py">ComponentCompleteUploadResponse</a></code>
|
308
|
-
- <code title="post /api/v1/upload/component/{componentId}/presigned-url">client.v1.upload.component.<a href="./src/studyfetch_sdk/resources/v1/upload/component.py">get_presigned_url</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/upload/component_get_presigned_url_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/upload/component_get_presigned_url_response.py">ComponentGetPresignedURLResponse</a></code>
|
309
|
-
- <code title="post /api/v1/upload/component/{componentId}/file">client.v1.upload.component.<a href="./src/studyfetch_sdk/resources/v1/upload/component.py">upload_file</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/upload/component_upload_file_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/upload/file_upload_response.py">FileUploadResponse</a></code>
|
310
|
-
- <code title="post /api/v1/upload/component/{componentId}/url">client.v1.upload.component.<a href="./src/studyfetch_sdk/resources/v1/upload/component.py">upload_url</a>(component_id, \*\*<a href="src/studyfetch_sdk/types/v1/upload/component_upload_url_params.py">params</a>) -> <a href="./src/studyfetch_sdk/types/v1/upload/file_upload_response.py">FileUploadResponse</a></code>
|
311
|
-
|
312
160
|
## AssignmentGrader
|
313
161
|
|
314
162
|
Types:
|
@@ -324,26 +172,8 @@ Methods:
|
|
324
172
|
- <code title="get /api/v1/assignment-grader/get">client.v1.assignment_grader.<a href="./src/studyfetch_sdk/resources/v1/assignment_grader.py">get_all</a>() -> <a href="./src/studyfetch_sdk/types/v1/assignment_grader_get_all_response.py">AssignmentGraderGetAllResponse</a></code>
|
325
173
|
- <code title="get /api/v1/assignment-grader/get/{id}">client.v1.assignment_grader.<a href="./src/studyfetch_sdk/resources/v1/assignment_grader.py">get_by_id</a>(id) -> <a href="./src/studyfetch_sdk/types/v1/assignment_grader_response.py">AssignmentGraderResponse</a></code>
|
326
174
|
|
327
|
-
##
|
328
|
-
|
329
|
-
Methods:
|
330
|
-
|
331
|
-
- <code title="post /api/v1/data-analyst/history">client.v1.data_analyst.<a href="./src/studyfetch_sdk/resources/v1/data_analyst/data_analyst.py">get_history</a>() -> None</code>
|
332
|
-
- <code title="get /api/v1/data-analyst/session/{sessionId}">client.v1.data_analyst.<a href="./src/studyfetch_sdk/resources/v1/data_analyst/data_analyst.py">retrieve_session</a>(session_id, \*\*<a href="src/studyfetch_sdk/types/v1/data_analyst_retrieve_session_params.py">params</a>) -> None</code>
|
333
|
-
- <code title="post /api/v1/data-analyst/followups">client.v1.data_analyst.<a href="./src/studyfetch_sdk/resources/v1/data_analyst/data_analyst.py">send_followups</a>() -> None</code>
|
334
|
-
- <code title="post /api/v1/data-analyst/message">client.v1.data_analyst.<a href="./src/studyfetch_sdk/resources/v1/data_analyst/data_analyst.py">send_message</a>(\*\*<a href="src/studyfetch_sdk/types/v1/data_analyst_send_message_params.py">params</a>) -> None</code>
|
335
|
-
- <code title="post /api/v1/data-analyst/stream">client.v1.data_analyst.<a href="./src/studyfetch_sdk/resources/v1/data_analyst/data_analyst.py">stream</a>(\*\*<a href="src/studyfetch_sdk/types/v1/data_analyst_stream_params.py">params</a>) -> None</code>
|
336
|
-
|
337
|
-
### Sessions
|
338
|
-
|
339
|
-
Methods:
|
340
|
-
|
341
|
-
- <code title="post /api/v1/data-analyst/sessions/create">client.v1.data_analyst.sessions.<a href="./src/studyfetch_sdk/resources/v1/data_analyst/sessions.py">create</a>() -> None</code>
|
342
|
-
- <code title="get /api/v1/data-analyst/sessions/{userId}">client.v1.data_analyst.sessions.<a href="./src/studyfetch_sdk/resources/v1/data_analyst/sessions.py">retrieve</a>(user_id, \*\*<a href="src/studyfetch_sdk/types/v1/data_analyst/session_retrieve_params.py">params</a>) -> None</code>
|
343
|
-
|
344
|
-
### Test
|
175
|
+
## Chat
|
345
176
|
|
346
177
|
Methods:
|
347
178
|
|
348
|
-
- <code title="post /api/v1/
|
349
|
-
- <code title="post /api/v1/data-analyst/test/image-citation">client.v1.data_analyst.test.<a href="./src/studyfetch_sdk/resources/v1/data_analyst/test.py">upload_image_citation</a>() -> None</code>
|
179
|
+
- <code title="post /api/v1/chat/stream">client.v1.chat.<a href="./src/studyfetch_sdk/resources/v1/chat.py">stream</a>(\*\*<a href="src/studyfetch_sdk/types/v1/chat_stream_params.py">params</a>) -> None</code>
|
@@ -208,14 +208,18 @@ class BaseModel(pydantic.BaseModel):
|
|
208
208
|
else:
|
209
209
|
fields_values[name] = field_get_default(field)
|
210
210
|
|
211
|
+
extra_field_type = _get_extra_fields_type(__cls)
|
212
|
+
|
211
213
|
_extra = {}
|
212
214
|
for key, value in values.items():
|
213
215
|
if key not in model_fields:
|
216
|
+
parsed = construct_type(value=value, type_=extra_field_type) if extra_field_type is not None else value
|
217
|
+
|
214
218
|
if PYDANTIC_V2:
|
215
|
-
_extra[key] =
|
219
|
+
_extra[key] = parsed
|
216
220
|
else:
|
217
221
|
_fields_set.add(key)
|
218
|
-
fields_values[key] =
|
222
|
+
fields_values[key] = parsed
|
219
223
|
|
220
224
|
object.__setattr__(m, "__dict__", fields_values)
|
221
225
|
|
@@ -370,6 +374,23 @@ def _construct_field(value: object, field: FieldInfo, key: str) -> object:
|
|
370
374
|
return construct_type(value=value, type_=type_, metadata=getattr(field, "metadata", None))
|
371
375
|
|
372
376
|
|
377
|
+
def _get_extra_fields_type(cls: type[pydantic.BaseModel]) -> type | None:
|
378
|
+
if not PYDANTIC_V2:
|
379
|
+
# TODO
|
380
|
+
return None
|
381
|
+
|
382
|
+
schema = cls.__pydantic_core_schema__
|
383
|
+
if schema["type"] == "model":
|
384
|
+
fields = schema["schema"]
|
385
|
+
if fields["type"] == "model-fields":
|
386
|
+
extras = fields.get("extras_schema")
|
387
|
+
if extras and "cls" in extras:
|
388
|
+
# mypy can't narrow the type
|
389
|
+
return extras["cls"] # type: ignore[no-any-return]
|
390
|
+
|
391
|
+
return None
|
392
|
+
|
393
|
+
|
373
394
|
def is_basemodel(type_: type) -> bool:
|
374
395
|
"""Returns whether or not the given type is either a `BaseModel` or a union of `BaseModel`"""
|
375
396
|
if is_union(type_):
|
{studyfetch_sdk-0.1.0a19 → studyfetch_sdk-0.1.0a21}/src/studyfetch_sdk/resources/v1/__init__.py
RENAMED
@@ -24,14 +24,6 @@ from .embed import (
|
|
24
24
|
EmbedResourceWithStreamingResponse,
|
25
25
|
AsyncEmbedResourceWithStreamingResponse,
|
26
26
|
)
|
27
|
-
from .tests import (
|
28
|
-
TestsResource,
|
29
|
-
AsyncTestsResource,
|
30
|
-
TestsResourceWithRawResponse,
|
31
|
-
AsyncTestsResourceWithRawResponse,
|
32
|
-
TestsResourceWithStreamingResponse,
|
33
|
-
AsyncTestsResourceWithStreamingResponse,
|
34
|
-
)
|
35
27
|
from .usage import (
|
36
28
|
UsageResource,
|
37
29
|
AsyncUsageResource,
|
@@ -40,14 +32,6 @@ from .usage import (
|
|
40
32
|
UsageResourceWithStreamingResponse,
|
41
33
|
AsyncUsageResourceWithStreamingResponse,
|
42
34
|
)
|
43
|
-
from .upload import (
|
44
|
-
UploadResource,
|
45
|
-
AsyncUploadResource,
|
46
|
-
UploadResourceWithRawResponse,
|
47
|
-
AsyncUploadResourceWithRawResponse,
|
48
|
-
UploadResourceWithStreamingResponse,
|
49
|
-
AsyncUploadResourceWithStreamingResponse,
|
50
|
-
)
|
51
35
|
from .folders import (
|
52
36
|
FoldersResource,
|
53
37
|
AsyncFoldersResource,
|
@@ -64,14 +48,6 @@ from .materials import (
|
|
64
48
|
MaterialsResourceWithStreamingResponse,
|
65
49
|
AsyncMaterialsResourceWithStreamingResponse,
|
66
50
|
)
|
67
|
-
from .scenarios import (
|
68
|
-
ScenariosResource,
|
69
|
-
AsyncScenariosResource,
|
70
|
-
ScenariosResourceWithRawResponse,
|
71
|
-
AsyncScenariosResourceWithRawResponse,
|
72
|
-
ScenariosResourceWithStreamingResponse,
|
73
|
-
AsyncScenariosResourceWithStreamingResponse,
|
74
|
-
)
|
75
51
|
from .components import (
|
76
52
|
ComponentsResource,
|
77
53
|
AsyncComponentsResource,
|
@@ -80,38 +56,6 @@ from .components import (
|
|
80
56
|
ComponentsResourceWithStreamingResponse,
|
81
57
|
AsyncComponentsResourceWithStreamingResponse,
|
82
58
|
)
|
83
|
-
from .explainers import (
|
84
|
-
ExplainersResource,
|
85
|
-
AsyncExplainersResource,
|
86
|
-
ExplainersResourceWithRawResponse,
|
87
|
-
AsyncExplainersResourceWithRawResponse,
|
88
|
-
ExplainersResourceWithStreamingResponse,
|
89
|
-
AsyncExplainersResourceWithStreamingResponse,
|
90
|
-
)
|
91
|
-
from .flashcards import (
|
92
|
-
FlashcardsResource,
|
93
|
-
AsyncFlashcardsResource,
|
94
|
-
FlashcardsResourceWithRawResponse,
|
95
|
-
AsyncFlashcardsResourceWithRawResponse,
|
96
|
-
FlashcardsResourceWithStreamingResponse,
|
97
|
-
AsyncFlashcardsResourceWithStreamingResponse,
|
98
|
-
)
|
99
|
-
from .audio_recaps import (
|
100
|
-
AudioRecapsResource,
|
101
|
-
AsyncAudioRecapsResource,
|
102
|
-
AudioRecapsResourceWithRawResponse,
|
103
|
-
AsyncAudioRecapsResourceWithRawResponse,
|
104
|
-
AudioRecapsResourceWithStreamingResponse,
|
105
|
-
AsyncAudioRecapsResourceWithStreamingResponse,
|
106
|
-
)
|
107
|
-
from .data_analyst import (
|
108
|
-
DataAnalystResource,
|
109
|
-
AsyncDataAnalystResource,
|
110
|
-
DataAnalystResourceWithRawResponse,
|
111
|
-
AsyncDataAnalystResourceWithRawResponse,
|
112
|
-
DataAnalystResourceWithStreamingResponse,
|
113
|
-
AsyncDataAnalystResourceWithStreamingResponse,
|
114
|
-
)
|
115
59
|
from .assignment_grader import (
|
116
60
|
AssignmentGraderResource,
|
117
61
|
AsyncAssignmentGraderResource,
|
@@ -152,60 +96,18 @@ __all__ = [
|
|
152
96
|
"AsyncEmbedResourceWithRawResponse",
|
153
97
|
"EmbedResourceWithStreamingResponse",
|
154
98
|
"AsyncEmbedResourceWithStreamingResponse",
|
155
|
-
"ChatResource",
|
156
|
-
"AsyncChatResource",
|
157
|
-
"ChatResourceWithRawResponse",
|
158
|
-
"AsyncChatResourceWithRawResponse",
|
159
|
-
"ChatResourceWithStreamingResponse",
|
160
|
-
"AsyncChatResourceWithStreamingResponse",
|
161
|
-
"TestsResource",
|
162
|
-
"AsyncTestsResource",
|
163
|
-
"TestsResourceWithRawResponse",
|
164
|
-
"AsyncTestsResourceWithRawResponse",
|
165
|
-
"TestsResourceWithStreamingResponse",
|
166
|
-
"AsyncTestsResourceWithStreamingResponse",
|
167
|
-
"AudioRecapsResource",
|
168
|
-
"AsyncAudioRecapsResource",
|
169
|
-
"AudioRecapsResourceWithRawResponse",
|
170
|
-
"AsyncAudioRecapsResourceWithRawResponse",
|
171
|
-
"AudioRecapsResourceWithStreamingResponse",
|
172
|
-
"AsyncAudioRecapsResourceWithStreamingResponse",
|
173
|
-
"FlashcardsResource",
|
174
|
-
"AsyncFlashcardsResource",
|
175
|
-
"FlashcardsResourceWithRawResponse",
|
176
|
-
"AsyncFlashcardsResourceWithRawResponse",
|
177
|
-
"FlashcardsResourceWithStreamingResponse",
|
178
|
-
"AsyncFlashcardsResourceWithStreamingResponse",
|
179
|
-
"ScenariosResource",
|
180
|
-
"AsyncScenariosResource",
|
181
|
-
"ScenariosResourceWithRawResponse",
|
182
|
-
"AsyncScenariosResourceWithRawResponse",
|
183
|
-
"ScenariosResourceWithStreamingResponse",
|
184
|
-
"AsyncScenariosResourceWithStreamingResponse",
|
185
|
-
"ExplainersResource",
|
186
|
-
"AsyncExplainersResource",
|
187
|
-
"ExplainersResourceWithRawResponse",
|
188
|
-
"AsyncExplainersResourceWithRawResponse",
|
189
|
-
"ExplainersResourceWithStreamingResponse",
|
190
|
-
"AsyncExplainersResourceWithStreamingResponse",
|
191
|
-
"UploadResource",
|
192
|
-
"AsyncUploadResource",
|
193
|
-
"UploadResourceWithRawResponse",
|
194
|
-
"AsyncUploadResourceWithRawResponse",
|
195
|
-
"UploadResourceWithStreamingResponse",
|
196
|
-
"AsyncUploadResourceWithStreamingResponse",
|
197
99
|
"AssignmentGraderResource",
|
198
100
|
"AsyncAssignmentGraderResource",
|
199
101
|
"AssignmentGraderResourceWithRawResponse",
|
200
102
|
"AsyncAssignmentGraderResourceWithRawResponse",
|
201
103
|
"AssignmentGraderResourceWithStreamingResponse",
|
202
104
|
"AsyncAssignmentGraderResourceWithStreamingResponse",
|
203
|
-
"
|
204
|
-
"
|
205
|
-
"
|
206
|
-
"
|
207
|
-
"
|
208
|
-
"
|
105
|
+
"ChatResource",
|
106
|
+
"AsyncChatResource",
|
107
|
+
"ChatResourceWithRawResponse",
|
108
|
+
"AsyncChatResourceWithRawResponse",
|
109
|
+
"ChatResourceWithStreamingResponse",
|
110
|
+
"AsyncChatResourceWithStreamingResponse",
|
209
111
|
"V1Resource",
|
210
112
|
"AsyncV1Resource",
|
211
113
|
"V1ResourceWithRawResponse",
|