studyfetch-sdk 0.1.0a17__py3-none-any.whl → 0.1.0a19__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. studyfetch_sdk/_models.py +1 -1
  2. studyfetch_sdk/_version.py +1 -1
  3. studyfetch_sdk/resources/v1/__init__.py +14 -0
  4. studyfetch_sdk/resources/v1/assignment_grader.py +81 -1
  5. studyfetch_sdk/resources/v1/components.py +36 -4
  6. studyfetch_sdk/resources/v1/data_analyst/__init__.py +47 -0
  7. studyfetch_sdk/resources/v1/data_analyst/data_analyst.py +582 -0
  8. studyfetch_sdk/resources/v1/data_analyst/sessions.py +222 -0
  9. studyfetch_sdk/resources/v1/data_analyst/test.py +190 -0
  10. studyfetch_sdk/resources/v1/materials/bulk.py +60 -7
  11. studyfetch_sdk/resources/v1/materials/materials.py +250 -57
  12. studyfetch_sdk/resources/v1/materials/test.py +29 -25
  13. studyfetch_sdk/resources/v1/materials/upload.py +402 -14
  14. studyfetch_sdk/resources/v1/usage/analyst.py +143 -15
  15. studyfetch_sdk/resources/v1/v1.py +98 -0
  16. studyfetch_sdk/types/v1/__init__.py +12 -0
  17. studyfetch_sdk/types/v1/assignment_grader_response.py +20 -1
  18. studyfetch_sdk/types/v1/component.py +9 -1
  19. studyfetch_sdk/types/v1/component_create_params.py +57 -1
  20. studyfetch_sdk/types/v1/component_list_params.py +9 -1
  21. studyfetch_sdk/types/v1/content_param.py +23 -0
  22. studyfetch_sdk/types/v1/data_analyst/__init__.py +5 -0
  23. studyfetch_sdk/types/v1/data_analyst/session_retrieve_params.py +11 -0
  24. studyfetch_sdk/types/v1/data_analyst_retrieve_session_params.py +13 -0
  25. studyfetch_sdk/types/v1/data_analyst_send_message_params.py +54 -0
  26. studyfetch_sdk/types/v1/data_analyst_stream_params.py +28 -0
  27. studyfetch_sdk/types/v1/material_batch_create_params.py +29 -0
  28. studyfetch_sdk/types/v1/material_batch_create_response.py +27 -0
  29. studyfetch_sdk/types/v1/material_create_and_process_params.py +27 -0
  30. studyfetch_sdk/types/v1/material_create_params.py +4 -17
  31. studyfetch_sdk/types/v1/material_debug_response.py +47 -0
  32. studyfetch_sdk/types/v1/material_get_download_url_params.py +3 -2
  33. studyfetch_sdk/types/v1/material_get_download_url_response.py +12 -0
  34. studyfetch_sdk/types/v1/material_move_params.py +15 -0
  35. studyfetch_sdk/types/v1/material_rename_params.py +12 -0
  36. studyfetch_sdk/types/v1/material_search_params.py +3 -6
  37. studyfetch_sdk/types/v1/material_search_response.py +54 -0
  38. studyfetch_sdk/types/v1/materials/__init__.py +11 -0
  39. studyfetch_sdk/types/v1/materials/bulk_move_params.py +18 -0
  40. studyfetch_sdk/types/v1/materials/bulk_move_response.py +15 -0
  41. studyfetch_sdk/types/v1/materials/test_perform_ocr_response.py +19 -0
  42. studyfetch_sdk/types/v1/materials/test_process_epub_response.py +30 -0
  43. studyfetch_sdk/types/v1/materials/test_process_image_response.py +30 -0
  44. studyfetch_sdk/types/v1/materials/test_process_video_response.py +25 -0
  45. studyfetch_sdk/types/v1/materials/upload_complete_upload_params.py +20 -0
  46. studyfetch_sdk/types/v1/materials/upload_create_presigned_url_params.py +23 -0
  47. studyfetch_sdk/types/v1/materials/upload_create_presigned_url_response.py +18 -0
  48. studyfetch_sdk/types/v1/materials/upload_upload_file_and_process_params.py +26 -0
  49. studyfetch_sdk/types/v1/materials/upload_upload_url_and_process_params.py +26 -0
  50. studyfetch_sdk/types/v1/usage/__init__.py +3 -0
  51. studyfetch_sdk/types/v1/usage/analyst_get_test_questions_params.py +18 -0
  52. studyfetch_sdk/types/v1/usage/analyst_list_chat_messages_params.py +18 -0
  53. studyfetch_sdk/types/v1/usage/analyst_list_chat_messages_response.py +35 -0
  54. studyfetch_sdk/types/v1/usage/analyst_list_events_params.py +7 -0
  55. {studyfetch_sdk-0.1.0a17.dist-info → studyfetch_sdk-0.1.0a19.dist-info}/METADATA +1 -1
  56. {studyfetch_sdk-0.1.0a17.dist-info → studyfetch_sdk-0.1.0a19.dist-info}/RECORD +58 -26
  57. {studyfetch_sdk-0.1.0a17.dist-info → studyfetch_sdk-0.1.0a19.dist-info}/WHEEL +0 -0
  58. {studyfetch_sdk-0.1.0a17.dist-info → studyfetch_sdk-0.1.0a19.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,23 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Required, Annotated, TypedDict
6
+
7
+ from ...._utils import PropertyInfo
8
+
9
+ __all__ = ["UploadCreatePresignedURLParams"]
10
+
11
+
12
+ class UploadCreatePresignedURLParams(TypedDict, total=False):
13
+ content_type: Required[Annotated[str, PropertyInfo(alias="contentType")]]
14
+ """MIME type of the file"""
15
+
16
+ filename: Required[str]
17
+ """Filename to upload"""
18
+
19
+ name: Required[str]
20
+ """Display name for the material"""
21
+
22
+ folder_id: Annotated[str, PropertyInfo(alias="folderId")]
23
+ """Folder ID to place the material in"""
@@ -0,0 +1,18 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from pydantic import Field as FieldInfo
4
+
5
+ from ...._models import BaseModel
6
+
7
+ __all__ = ["UploadCreatePresignedURLResponse"]
8
+
9
+
10
+ class UploadCreatePresignedURLResponse(BaseModel):
11
+ material_id: str = FieldInfo(alias="materialId")
12
+ """Material ID to use for completion"""
13
+
14
+ s3_key: str = FieldInfo(alias="s3Key")
15
+ """S3 key for the file"""
16
+
17
+ upload_url: str = FieldInfo(alias="uploadUrl")
18
+ """Presigned URL for direct S3 upload"""
@@ -0,0 +1,26 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Required, Annotated, TypedDict
6
+
7
+ from ...._types import FileTypes
8
+ from ...._utils import PropertyInfo
9
+
10
+ __all__ = ["UploadUploadFileAndProcessParams"]
11
+
12
+
13
+ class UploadUploadFileAndProcessParams(TypedDict, total=False):
14
+ file: Required[FileTypes]
15
+
16
+ name: Required[str]
17
+ """Material name"""
18
+
19
+ folder_id: Annotated[str, PropertyInfo(alias="folderId")]
20
+ """Folder ID (optional)"""
21
+
22
+ poll_interval_ms: Annotated[float, PropertyInfo(alias="pollIntervalMs")]
23
+ """Polling interval in milliseconds (default: 2000)"""
24
+
25
+ timeout_ms: Annotated[float, PropertyInfo(alias="timeoutMs")]
26
+ """Processing timeout in milliseconds (default: 300000)"""
@@ -0,0 +1,26 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Required, Annotated, TypedDict
6
+
7
+ from ...._utils import PropertyInfo
8
+
9
+ __all__ = ["UploadUploadURLAndProcessParams"]
10
+
11
+
12
+ class UploadUploadURLAndProcessParams(TypedDict, total=False):
13
+ name: Required[str]
14
+ """Material name"""
15
+
16
+ url: Required[str]
17
+ """URL to fetch content from"""
18
+
19
+ folder_id: Annotated[str, PropertyInfo(alias="folderId")]
20
+ """Folder ID (optional)"""
21
+
22
+ poll_interval_ms: Annotated[float, PropertyInfo(alias="pollIntervalMs")]
23
+ """Polling interval in milliseconds (default: 2 seconds)"""
24
+
25
+ timeout_ms: Annotated[float, PropertyInfo(alias="timeoutMs")]
26
+ """Maximum time to wait for processing in milliseconds (default: 5 minutes)"""
@@ -3,3 +3,6 @@
3
3
  from __future__ import annotations
4
4
 
5
5
  from .analyst_list_events_params import AnalystListEventsParams as AnalystListEventsParams
6
+ from .analyst_get_test_questions_params import AnalystGetTestQuestionsParams as AnalystGetTestQuestionsParams
7
+ from .analyst_list_chat_messages_params import AnalystListChatMessagesParams as AnalystListChatMessagesParams
8
+ from .analyst_list_chat_messages_response import AnalystListChatMessagesResponse as AnalystListChatMessagesResponse
@@ -0,0 +1,18 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import List
6
+ from typing_extensions import Annotated, TypedDict
7
+
8
+ from ...._utils import PropertyInfo
9
+
10
+ __all__ = ["AnalystGetTestQuestionsParams"]
11
+
12
+
13
+ class AnalystGetTestQuestionsParams(TypedDict, total=False):
14
+ group_ids: Annotated[List[str], PropertyInfo(alias="groupIds")]
15
+ """Array of group IDs to filter"""
16
+
17
+ user_id: Annotated[str, PropertyInfo(alias="userId")]
18
+ """User ID to get test results for"""
@@ -0,0 +1,18 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import List
6
+ from typing_extensions import Annotated, TypedDict
7
+
8
+ from ...._utils import PropertyInfo
9
+
10
+ __all__ = ["AnalystListChatMessagesParams"]
11
+
12
+
13
+ class AnalystListChatMessagesParams(TypedDict, total=False):
14
+ group_ids: Annotated[List[str], PropertyInfo(alias="groupIds")]
15
+ """Array of group IDs to filter"""
16
+
17
+ user_id: Annotated[str, PropertyInfo(alias="userId")]
18
+ """User ID to get chat messages for"""
@@ -0,0 +1,35 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List, Optional
4
+ from datetime import datetime
5
+ from typing_extensions import Literal
6
+
7
+ from pydantic import Field as FieldInfo
8
+
9
+ from ...._models import BaseModel
10
+
11
+ __all__ = ["AnalystListChatMessagesResponse", "Message"]
12
+
13
+
14
+ class Message(BaseModel):
15
+ component_id: Optional[str] = FieldInfo(alias="componentId", default=None)
16
+
17
+ content: Optional[str] = None
18
+
19
+ created_at: Optional[datetime] = FieldInfo(alias="createdAt", default=None)
20
+
21
+ metadata: Optional[object] = None
22
+
23
+ role: Optional[Literal["user", "assistant", "system"]] = None
24
+
25
+ session_id: Optional[str] = FieldInfo(alias="sessionId", default=None)
26
+
27
+ user_id: Optional[str] = FieldInfo(alias="userId", default=None)
28
+
29
+
30
+ class AnalystListChatMessagesResponse(BaseModel):
31
+ messages: Optional[List[Message]] = None
32
+
33
+ session_count: Optional[float] = FieldInfo(alias="sessionCount", default=None)
34
+
35
+ total: Optional[float] = None
@@ -2,6 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
+ from typing import List
5
6
  from typing_extensions import Literal, Required, Annotated, TypedDict
6
7
 
7
8
  from ...._utils import PropertyInfo
@@ -47,3 +48,9 @@ class AnalystListEventsParams(TypedDict, total=False):
47
48
 
48
49
  start_date: Required[Annotated[str, PropertyInfo(alias="startDate")]]
49
50
  """Start date for filtering (ISO 8601)"""
51
+
52
+ group_ids: Annotated[List[str], PropertyInfo(alias="groupIds")]
53
+ """Array of group IDs to filter"""
54
+
55
+ user_ids: Annotated[List[str], PropertyInfo(alias="userIds")]
56
+ """Array of user IDs to filter"""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: studyfetch_sdk
3
- Version: 0.1.0a17
3
+ Version: 0.1.0a19
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
@@ -5,13 +5,13 @@ studyfetch_sdk/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,658
5
5
  studyfetch_sdk/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
6
  studyfetch_sdk/_exceptions.py,sha256=19gq_huoBWNcc8dc3YLQHCjkkmixKafZmW2GqVGlmCs,3234
7
7
  studyfetch_sdk/_files.py,sha256=qHhXttBIBYPPBVXbKjskY9o4WiktVmJs_6Kbv26sSew,3632
8
- studyfetch_sdk/_models.py,sha256=viD5E6aDMhxslcFHDYvkHaKzE8YLcNmsPsMe8STixvs,29294
8
+ studyfetch_sdk/_models.py,sha256=aRCuUozbf1yNMK9XbMmxcgxDJYogijGTtQEr3g_wbyA,29316
9
9
  studyfetch_sdk/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
10
10
  studyfetch_sdk/_resource.py,sha256=y0aoAqMIYwTAwStuxbpO8XpTPnrSNQQ_ZcgiH5xcntg,1142
11
11
  studyfetch_sdk/_response.py,sha256=6ph8tSkqF5pNbTo_2Zhizhq2O-Eb67TcksHwyg3aXdc,28864
12
12
  studyfetch_sdk/_streaming.py,sha256=HZoENuPVzWhBn24eH3lnMCvRbWN0EPwvhWYfdlJfw0A,10128
13
13
  studyfetch_sdk/_types.py,sha256=6nvqHGarRGuhs_FL8tJ8sGXXD8XWajNynT2K78GxRUI,6205
14
- studyfetch_sdk/_version.py,sha256=aF-udkHOz21mpAQ_3ettDZ19LQb6jCshuNW3yCFLHM4,175
14
+ studyfetch_sdk/_version.py,sha256=lSL9CPjzKtgW04zNaHfbKOlQdD6z9Em8G-fsMw8oAlQ,175
15
15
  studyfetch_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  studyfetch_sdk/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
17
17
  studyfetch_sdk/_utils/_logs.py,sha256=EoZgOiIkpf2WB_0Ts0Ti7G3o_25v7IsPf_q-yEU6sbY,798
@@ -25,13 +25,13 @@ studyfetch_sdk/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0Xcn
25
25
  studyfetch_sdk/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
26
26
  studyfetch_sdk/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
27
27
  studyfetch_sdk/resources/__init__.py,sha256=TSJ6b8GNHShyK5w7efHV93u1bY2jYVySQRa2zKc1dKM,500
28
- studyfetch_sdk/resources/v1/__init__.py,sha256=qxWo4pd2dhmbovxcvRakku86rsvbGMXDISPSEs8qc_s,6729
29
- studyfetch_sdk/resources/v1/assignment_grader.py,sha256=6jUl0kFBR90J5rkqa6bLf07EaiFDcXN1DvbUxFjUSs8,13243
30
- studyfetch_sdk/resources/v1/components.py,sha256=bPVp1Z1uZPco7ZHN7ulduuV4lhXfIHnnvj_lzGDr9vI,35125
28
+ studyfetch_sdk/resources/v1/__init__.py,sha256=lk3BnI_v7TksGKGyvwoohVdfpzQ7DvEEoBDZ5QW2MYI,7245
29
+ studyfetch_sdk/resources/v1/assignment_grader.py,sha256=xNI0G7xgz_eC1MR9grPZi-RAaPvSgwQA0rkJhrUx90w,16329
30
+ studyfetch_sdk/resources/v1/components.py,sha256=XLeKvBQ92xGGFjtTc7YL42Yv6EqY-70Rg0DW83jIQFc,35577
31
31
  studyfetch_sdk/resources/v1/explainers.py,sha256=W5Kq3Gpwqw3kBy9v-qpV5FKxH1HAm5_yk1NgACM-Mec,16047
32
32
  studyfetch_sdk/resources/v1/flashcards.py,sha256=_-zZUd8Ja9k2895cxLJsLbN73ZTIrkJaComGCSMkbCk,29242
33
33
  studyfetch_sdk/resources/v1/folders.py,sha256=o43HhcVhqF3t7xWMFFNIiMPElhoqkXtaCTVjEE5s5so,27436
34
- studyfetch_sdk/resources/v1/v1.py,sha256=ggQlVJie9jWrhQY-etiGbL9fVBImg8nqHqprE85L_Y8,17065
34
+ studyfetch_sdk/resources/v1/v1.py,sha256=pfw_P67REDvXvtHb5V60VPiZ2LwmzVQHDWS-5RMJmAw,20783
35
35
  studyfetch_sdk/resources/v1/audio_recaps/__init__.py,sha256=X6oJGmyaqUBFChSn8l0r-EHjCZos36O10zfFYWuid2w,1094
36
36
  studyfetch_sdk/resources/v1/audio_recaps/audio_recaps.py,sha256=XAfSWFDbjUSp9bKjDVHqLyrEv3kNtTYSaLtWPRFIzdc,12630
37
37
  studyfetch_sdk/resources/v1/audio_recaps/sections.py,sha256=AcYtFSNemNP2T-fJn2nZkrPNNpaEtqiwPNuTpual2Lw,9451
@@ -39,14 +39,18 @@ studyfetch_sdk/resources/v1/chat/__init__.py,sha256=WSv53HDkoj5Ec37hiJlCV2V-ZquT
39
39
  studyfetch_sdk/resources/v1/chat/chat.py,sha256=PFySkZ3HsxthOYe5QZYAKkSwJryo6tE7Tl53f7DscYo,21666
40
40
  studyfetch_sdk/resources/v1/chat/sessions.py,sha256=mjcTJFft2zXyQlqhARz_J5md1BfAD3uhDVp-olow83o,8479
41
41
  studyfetch_sdk/resources/v1/chat/test.py,sha256=_7D8vYKhEUi4L32-N4SnpQlDFZl2swrLQFsSDUidn1M,7067
42
+ studyfetch_sdk/resources/v1/data_analyst/__init__.py,sha256=VSvCuMKdEIyo9tCKGSn2Bxm4DZNg-uuYsCd-h4pojQk,1518
43
+ studyfetch_sdk/resources/v1/data_analyst/data_analyst.py,sha256=IiaoG0zG_StbCzlgtVchLf697vCKjyqPXbEbCkqoTGI,22520
44
+ studyfetch_sdk/resources/v1/data_analyst/sessions.py,sha256=puUPLG8qWewaks2WHkGx9NC8d1mqSXLAVr1rdHCqVbA,8519
45
+ studyfetch_sdk/resources/v1/data_analyst/test.py,sha256=46J93cP5MImFwuCyr6w5wdt2OnllDOMXFqOneXFFY_E,7209
42
46
  studyfetch_sdk/resources/v1/embed/__init__.py,sha256=VJ7xFoda7Gx3MH2plj_RN3NF5lmfKMFB1IHU0StdTzo,1028
43
47
  studyfetch_sdk/resources/v1/embed/component.py,sha256=vFArqNnLaCGiHAKt4dhF3IBE950KMJbCqX5En2Tj0ls,10491
44
48
  studyfetch_sdk/resources/v1/embed/embed.py,sha256=Tbny2GdlacLtNE-TfYRqYsVNIcOmPOy16cI1IrAHLmM,12582
45
49
  studyfetch_sdk/resources/v1/materials/__init__.py,sha256=tVk8p-CapS6r8iWZXSBxwA0UlQyHJQMY9FPDL_TvMfY,1889
46
- studyfetch_sdk/resources/v1/materials/bulk.py,sha256=oVAcnbKm8NUBFJIMoj4pEHFb_l1CM7F3Ve9cTApWguo,4843
47
- studyfetch_sdk/resources/v1/materials/materials.py,sha256=P_KTA5L54eVljY_HtLZD4zIEScrQ6kAi9WcCFI_04-0,40800
48
- studyfetch_sdk/resources/v1/materials/test.py,sha256=eGcjGYvPlrlZGrU6AnvZZX5qZ3aLgZgxIrNspXC1rnE,11355
49
- studyfetch_sdk/resources/v1/materials/upload.py,sha256=vXbsicx0pVlrx3LPr7rqOkqHmzBoxFI6lIBScM29zr8,15476
50
+ studyfetch_sdk/resources/v1/materials/bulk.py,sha256=7yWgp9Jfclm9ppZhk4VKZxBpOVr1UOBBzos8Nj3HDEo,6511
51
+ studyfetch_sdk/resources/v1/materials/materials.py,sha256=R9RMPqm_VR8ulCdevDTcjHaFLsMlyAryN4Zq3S0-U7Q,48101
52
+ studyfetch_sdk/resources/v1/materials/test.py,sha256=Vby03Ow171VfeSiM-i1s4pSkqTttY7ggFeCjJHk2dDk,11875
53
+ studyfetch_sdk/resources/v1/materials/upload.py,sha256=kIvUVFR2ECl1-RBUBHCUicSstKnFuox5vcypc3Vbvuc,29614
50
54
  studyfetch_sdk/resources/v1/scenarios/__init__.py,sha256=WrMn3vQJgHGQzWKq5SRUTMMvRd4p15Bt5JjZpHhKHZs,2071
51
55
  studyfetch_sdk/resources/v1/scenarios/component.py,sha256=ipHZj58PQfD1q1mNHLR0-zRNl6okOsMrqYaez5Bmn6c,15991
52
56
  studyfetch_sdk/resources/v1/scenarios/scenarios.py,sha256=q_gX2IdWAogGNy6G0WsdNpgvNE0_Cf3GeKy7ukKc4M0,34658
@@ -61,23 +65,27 @@ studyfetch_sdk/resources/v1/upload/__init__.py,sha256=N5r6jpSMe43dezq-6RBAWLVlL3
61
65
  studyfetch_sdk/resources/v1/upload/component.py,sha256=Q-8VO-XiWYDFpzdap-NcP62V77dvMXfeJouFv8ELXkM,21803
62
66
  studyfetch_sdk/resources/v1/upload/upload.py,sha256=RBkrsVi5_8qIqdYKypnSqj44ONvwW7u2XXIlpuJsKSg,3736
63
67
  studyfetch_sdk/resources/v1/usage/__init__.py,sha256=zUBe7msw9tyZplhmwNkhbCfRigNQQVj4IFpod4uGWZY,1002
64
- studyfetch_sdk/resources/v1/usage/analyst.py,sha256=BZC5QVnm6UWacrqodYFGXUodBM_b37I9jClbiXTakJo,13206
68
+ studyfetch_sdk/resources/v1/usage/analyst.py,sha256=WJfbjv57r1ZLgNytUzuEH7J_HYPsbXWhk2Ae6q4QBuA,17402
65
69
  studyfetch_sdk/resources/v1/usage/usage.py,sha256=HAG7FfTIiIihB0dtbZEmluKDD0GWqKWrfLp03gcdPjU,19694
66
70
  studyfetch_sdk/types/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
67
- studyfetch_sdk/types/v1/__init__.py,sha256=G2hSEu2NGKqUlFDRv3h2M-6AhdYOZqvNpMmNGGphgyg,3856
71
+ studyfetch_sdk/types/v1/__init__.py,sha256=ESgf5AOjwVVOVAWa8wUJlgClm8M7v5IpbO9qPR6W8Ts,4982
68
72
  studyfetch_sdk/types/v1/assignment_grader_create_params.py,sha256=o-U_-0ZHJxwpL3pSEW41SmsHz-sOP490i5P8EA5A-Ws,1246
69
73
  studyfetch_sdk/types/v1/assignment_grader_get_all_response.py,sha256=FidqfpFC-PX05_knGWicLerCeSqJiScW2IbzPyzBb2c,339
70
- studyfetch_sdk/types/v1/assignment_grader_response.py,sha256=j2DKiD99EPKPcvY6k7wKXd3r9UTkEe9SMmY94rRxjgw,548
74
+ studyfetch_sdk/types/v1/assignment_grader_response.py,sha256=KJm2_mg42eESgXNP2nkIxKvd04-rzQdQd6IeQCghJPo,1142
71
75
  studyfetch_sdk/types/v1/chat_get_session_params.py,sha256=Iv3O6eF4DvTYTBVQVyVR4trfZNQxFhipLPRWDF_VWq4,378
72
76
  studyfetch_sdk/types/v1/chat_send_message_params.py,sha256=BRxjNsVXsqcBbdrp4J5TQGjjNPJ_bz7uXw3pnc-x0oU,1454
73
77
  studyfetch_sdk/types/v1/chat_stream_params.py,sha256=Aqp2Vdsa35PAH-75kaO_ZYlkqGrCgDZ5EyYTTLRAJoE,695
74
- studyfetch_sdk/types/v1/component.py,sha256=ye8BDfb0taD0WwEWJDpi4cXH0iwKqzom0SQQA1nbO4c,1166
75
- studyfetch_sdk/types/v1/component_create_params.py,sha256=wtPCBVQScdZZuREIzmRIoMCCXoK9cVeR-NUA0qFatxo,10254
78
+ studyfetch_sdk/types/v1/component.py,sha256=ci484sfjcKqNkjD-1lsj-FqodAauBb8Kf7UE0qHgD20,1247
79
+ studyfetch_sdk/types/v1/component_create_params.py,sha256=ELDhT2mV33FTlJ_sebwaAckNEZuh7XE16EdyZs57pAc,11849
76
80
  studyfetch_sdk/types/v1/component_generate_embed_params.py,sha256=keiOzDzPCvacAWHQj_OtF2pGjEAqxwjNriBGxRaRQNk,3068
77
81
  studyfetch_sdk/types/v1/component_generate_embed_response.py,sha256=xhbqEpAt_Q7yzD4xjWITs_jXYUD6ElrH4aQfNEunI3Y,922
78
- studyfetch_sdk/types/v1/component_list_params.py,sha256=R8NMK7r37CpqmbAWdbs6rEF1LigoYrE3BXksJCCdKEQ,431
82
+ studyfetch_sdk/types/v1/component_list_params.py,sha256=ROPHM8kS3jVMVDfWcYZyv1Ecn5lZ879uw_b2IRNxgUQ,512
79
83
  studyfetch_sdk/types/v1/component_list_response.py,sha256=BYGoH8x8UJdekr8HXdbcOw_LoKWULlIdN6sn1uL5RuY,274
80
84
  studyfetch_sdk/types/v1/component_update_params.py,sha256=IkSFyldrto9H_F_4GWIGG1WYpYFEuYsAi-29dmo9vno,365
85
+ studyfetch_sdk/types/v1/content_param.py,sha256=V4F8-ypvZIixvupuYMCaE0Ycfra-Q8U2BGankYiFWzo,610
86
+ studyfetch_sdk/types/v1/data_analyst_retrieve_session_params.py,sha256=28BrSlcr93LW6eI3Ag_jAXVzsRUR2Vq3BKf5c1p0rSo,402
87
+ studyfetch_sdk/types/v1/data_analyst_send_message_params.py,sha256=lxud1RMxehK5ej0-i7M5yQGmgeIDjWuzi0hnXpg9-zw,1468
88
+ studyfetch_sdk/types/v1/data_analyst_stream_params.py,sha256=U48Cr-Fs_Zspxhd2v9QeZPTC1fOO5v1W_kfe0VfHg3U,709
81
89
  studyfetch_sdk/types/v1/embed_get_theme_params.py,sha256=wKZn4X-Ne29dOrxEBkGThxBPTdhPTgb-CzV65KvSFVw,308
82
90
  studyfetch_sdk/types/v1/embed_verify_params.py,sha256=hixgK7Uyhi2Oaj0t5Q5sbFVUYGdvmMsk_2-fu_2C2nw,314
83
91
  studyfetch_sdk/types/v1/explainer_create_params.py,sha256=DfTTxdkaUezNpD3TwTSyWZDsqcj3ZQ_pi-NiFmhldCk,1365
@@ -94,11 +102,19 @@ studyfetch_sdk/types/v1/folder_create_params.py,sha256=7aOh4pSBdnJ0kLH722pf2gNeJ
94
102
  studyfetch_sdk/types/v1/folder_list_params.py,sha256=BPzBIqjQrCyKuI3DcER1kFRTx15OSUpvsrsMgHXPdAE,391
95
103
  studyfetch_sdk/types/v1/folder_update_params.py,sha256=WynpsS4j_cPwqPjAGTXVcr1v0daB4S2F1MF8uuV6vNI,430
96
104
  studyfetch_sdk/types/v1/material.py,sha256=oiS1alAiO5X8nKMeSUd6AIiQaDLiF72QTMJDukqs32U,1615
97
- studyfetch_sdk/types/v1/material_create_params.py,sha256=mYjnlTBvz_aInnnqO7FiNEHbqAUBWbJ0pBm8ppUoELM,899
98
- studyfetch_sdk/types/v1/material_get_download_url_params.py,sha256=7prrB3K-E4xAWUQlaH_YBCEB7u9WHQSc9pE1NvO88Ts,400
105
+ studyfetch_sdk/types/v1/material_batch_create_params.py,sha256=R5KvbSt4D8DEbBqsrGD7DMCND02_8tCSAI9sZdsp1Bk,763
106
+ studyfetch_sdk/types/v1/material_batch_create_response.py,sha256=rqef0Fo9uP05CSLenN_B2HQ6Oi1H6F7E7xYoICFdFGk,695
107
+ studyfetch_sdk/types/v1/material_create_and_process_params.py,sha256=Z-fRiRRuCUBVjafpTxlpQyQtWRM9I7zJrr-hZk2T2eg,888
108
+ studyfetch_sdk/types/v1/material_create_params.py,sha256=CIVz2wMUhtMgTu00oWDhcqNznpW98t7O7ynfNDZCwzY,576
109
+ studyfetch_sdk/types/v1/material_debug_response.py,sha256=LM8THYVhABq50XeGaykMzziqbG3NHRoT7IpN22CYATM,1120
110
+ studyfetch_sdk/types/v1/material_get_download_url_params.py,sha256=GZpXV1lDBt1qKP0sxJhZvS1OU7vJ16nTtdkogzk4HZc,439
111
+ studyfetch_sdk/types/v1/material_get_download_url_response.py,sha256=09Vv4rNsXP2XyvjDP48eXGUQbEHqqRj5tmDNWiWJOKk,346
99
112
  studyfetch_sdk/types/v1/material_list_params.py,sha256=8yd556-GB4Xw-NFGshxm_Hx-nIG-MAg4dPtn-W38w3k,388
100
113
  studyfetch_sdk/types/v1/material_list_response.py,sha256=mYCoEQJT6sxJd35nchrBf7BJpRHWWH1CbgZNz3QBPQg,269
101
- studyfetch_sdk/types/v1/material_search_params.py,sha256=vawi3xfUqEn0jfj7X50dEEqpEjbhFYkwaWnXpKk7Lxs,800
114
+ studyfetch_sdk/types/v1/material_move_params.py,sha256=ghJzdKx8VzuchJ-chN4rPTkScjUedhber-gKgJSFTbc,459
115
+ studyfetch_sdk/types/v1/material_rename_params.py,sha256=RltDhuGmhBZY58Ol_1BE-wecinrRNvvDlnsW3FKo_MA,323
116
+ studyfetch_sdk/types/v1/material_search_params.py,sha256=2MokaAVVTcnnHVjDTn_YEOVvhD9tGyU1JeCF3gvaL4s,753
117
+ studyfetch_sdk/types/v1/material_search_response.py,sha256=9XSBBfmdQb3Aw2yCs43d43qRMQ-L6cho1an5JLaQQ8E,1282
102
118
  studyfetch_sdk/types/v1/scenario_create_params.py,sha256=anCK913P4vYEtgY6GnxxxCxRnUazeV1H1NoyBV78sT8,1281
103
119
  studyfetch_sdk/types/v1/scenario_submit_answer_params.py,sha256=g1idbU9OxRC_qrU7bOVNuFcXtKa2ZiJgy7KBR2mJWSM,597
104
120
  studyfetch_sdk/types/v1/scenario_update_params.py,sha256=F83xky9wzolK2VmTkTUqfrNwXB-h-H__8YYy7oXLz8A,1168
@@ -112,12 +128,25 @@ studyfetch_sdk/types/v1/usage_list_events_params.py,sha256=exIPdq6GwwDs5KmjzHE5E
112
128
  studyfetch_sdk/types/v1/audio_recaps/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
113
129
  studyfetch_sdk/types/v1/chat/__init__.py,sha256=wYABOEkbpJ2giFls8t8N32vNezDWQvFRnPw_giWy58g,207
114
130
  studyfetch_sdk/types/v1/chat/session_retrieve_params.py,sha256=G9P18vHLjgrLTVyWyKv8KGr0Pa4W9e8ZubMysxpty6I,290
131
+ studyfetch_sdk/types/v1/data_analyst/__init__.py,sha256=wYABOEkbpJ2giFls8t8N32vNezDWQvFRnPw_giWy58g,207
132
+ studyfetch_sdk/types/v1/data_analyst/session_retrieve_params.py,sha256=G9P18vHLjgrLTVyWyKv8KGr0Pa4W9e8ZubMysxpty6I,290
115
133
  studyfetch_sdk/types/v1/embed/__init__.py,sha256=PY0v530kkkL8N0ABYvRpyNG0B4-56axqoZ1Gbp6GYq0,303
116
134
  studyfetch_sdk/types/v1/embed/component_interact_params.py,sha256=IdYB5R3TK9KaOQgXP8HbDA4_1bmkPeCxNSORu_Pl1Y0,341
117
135
  studyfetch_sdk/types/v1/embed/component_retrieve_params.py,sha256=At4Eu0g84kblyZVKKBjwtFBc5UcG3XbhS97RkDgysMs,316
118
- studyfetch_sdk/types/v1/materials/__init__.py,sha256=dUjFp8sMxIHguGTJiFUSn-94pC07-usforU8UL9O4SE,309
136
+ studyfetch_sdk/types/v1/materials/__init__.py,sha256=dPE8KqUcB5Wke4ZtJHP8NgzFvUKKtZd04gNQdUyzcAw,1377
137
+ studyfetch_sdk/types/v1/materials/bulk_move_params.py,sha256=gho2qlCbjS_qSwpFNv10zTHISAhGdg3i3Cg7lJyN_lU,583
138
+ studyfetch_sdk/types/v1/materials/bulk_move_response.py,sha256=SsZc5vmcVE80p0Xxd8W61rGuQT6l9R34SLKVy0-MC9s,376
139
+ studyfetch_sdk/types/v1/materials/test_perform_ocr_response.py,sha256=qtE037pg0Nalbfvl9dUcgvsgb8NgQK8RLkclX2Z21nY,506
140
+ studyfetch_sdk/types/v1/materials/test_process_epub_response.py,sha256=HLWRvESxsEdouhYUg2XbgdImJ5ILmW04mcOzOIZEzNI,752
141
+ studyfetch_sdk/types/v1/materials/test_process_image_response.py,sha256=m2m4dUfRp-dmyhmL-ayqiok3yGPI06g0lNa1Zziej4Y,713
142
+ studyfetch_sdk/types/v1/materials/test_process_video_response.py,sha256=hWXrYymCN5FZX-m5_zmOnv7pqYSBEoHtIDQ0PY2umgk,552
143
+ studyfetch_sdk/types/v1/materials/upload_complete_upload_params.py,sha256=Xix2TToRJ8DhCYnYF3ap1-OOOzjYSDSdm-ijuuGJCJs,681
144
+ studyfetch_sdk/types/v1/materials/upload_create_presigned_url_params.py,sha256=Yun2JaQQ1OFN_6t2or_VxbFmeGd4SSVSQrOpaANhYhU,672
145
+ studyfetch_sdk/types/v1/materials/upload_create_presigned_url_response.py,sha256=_gavQUlB2l1VXrPsB02Bc5WUFiMBWn7kKvHZrGAdfLg,531
146
+ studyfetch_sdk/types/v1/materials/upload_upload_file_and_process_params.py,sha256=KKTxkzyl26q9hBNaa-N25F_eoTbst46Wen1aNrm0nek,808
119
147
  studyfetch_sdk/types/v1/materials/upload_upload_file_params.py,sha256=gfWhDYiYupBpxiSkJoJ2asgcBpYaXaMsZ55NxM-7rVg,521
120
148
  studyfetch_sdk/types/v1/materials/upload_upload_from_url_params.py,sha256=q4F7cBkJ7srXSkBosfiiApDETBz_lFJ0tPIUyHIUJXA,523
149
+ studyfetch_sdk/types/v1/materials/upload_upload_url_and_process_params.py,sha256=27MFaOv5xrEIwL_27YxSWx17hNZrCbmAMz_MOeaFrfU,827
121
150
  studyfetch_sdk/types/v1/scenarios/__init__.py,sha256=2DyrawNlb-TstNKw0gUMlQaNSq-UAUcLhmOGElM0l0U,207
122
151
  studyfetch_sdk/types/v1/scenarios/component_update_params.py,sha256=0wsa-_gN17TKmvhQBbCIQmN2gSEuCq2HBWjQaTqhFdk,1171
123
152
  studyfetch_sdk/types/v1/scenarios/submissions/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
@@ -130,9 +159,12 @@ studyfetch_sdk/types/v1/upload/component_get_presigned_url_response.py,sha256=RD
130
159
  studyfetch_sdk/types/v1/upload/component_upload_file_params.py,sha256=UTv4EMrj7_hXa-PU68PMEyXn-bnhxcC0V0qO0JN5W-I,652
131
160
  studyfetch_sdk/types/v1/upload/component_upload_url_params.py,sha256=3wXvto5WWzLYCu0EfQAWQgM73OmbRGhTwe6UnkMW0gM,687
132
161
  studyfetch_sdk/types/v1/upload/file_upload_response.py,sha256=z7LcH_BVu1meWzl9J3BeLOkcZr4NQmdtJV39SobbI1k,578
133
- studyfetch_sdk/types/v1/usage/__init__.py,sha256=W93APDYogn9YlFksS696VpAlz_P7W8mt5wfduXWtoVY,214
134
- studyfetch_sdk/types/v1/usage/analyst_list_events_params.py,sha256=5ylEgFOsxQ0HNLfyTktNvZx-VuWJHV06HMIfiNnVNHo,1562
135
- studyfetch_sdk-0.1.0a17.dist-info/METADATA,sha256=wzCQ49CChL5nfB4WXvBXKGOkxHR9_b1IPcRrRp-eo_U,15518
136
- studyfetch_sdk-0.1.0a17.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
137
- studyfetch_sdk-0.1.0a17.dist-info/licenses/LICENSE,sha256=CsdbJMegH_AAWljUmVcwW0Cj_GyIm1hjw6qPqPnmdn4,11344
138
- studyfetch_sdk-0.1.0a17.dist-info/RECORD,,
162
+ studyfetch_sdk/types/v1/usage/__init__.py,sha256=3h0IuGOlhWTwXAOPSFiZN8i5KxWfHN7E_ypXfaZ5BNw,550
163
+ studyfetch_sdk/types/v1/usage/analyst_get_test_questions_params.py,sha256=yADHiEpAZaeLoEZoBd4UweQgC-9ofsMj9zeTr1xgqOo,551
164
+ studyfetch_sdk/types/v1/usage/analyst_list_chat_messages_params.py,sha256=aiT5FyLIiw94prXV-bY3ipPhclzIcCnaXF5BaGZUkik,552
165
+ studyfetch_sdk/types/v1/usage/analyst_list_chat_messages_response.py,sha256=lJ85gWKgsGGX0uRCsOUXkdzz_Y5JSX7x76St1C7pwy0,1014
166
+ studyfetch_sdk/types/v1/usage/analyst_list_events_params.py,sha256=wQplMMNjjeTOeNneqgWFQstxFHh4aXhpUeVGUZZeifk,1799
167
+ studyfetch_sdk-0.1.0a19.dist-info/METADATA,sha256=-4Oo79KaCtbJEouoU9VOyd-_5RXGs9tpr8eGKSZ10Fw,15518
168
+ studyfetch_sdk-0.1.0a19.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
169
+ studyfetch_sdk-0.1.0a19.dist-info/licenses/LICENSE,sha256=CsdbJMegH_AAWljUmVcwW0Cj_GyIm1hjw6qPqPnmdn4,11344
170
+ studyfetch_sdk-0.1.0a19.dist-info/RECORD,,