studyfetch-sdk 0.1.0a19__py3-none-any.whl → 0.1.0a20__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.
- studyfetch_sdk/_models.py +23 -2
- studyfetch_sdk/_version.py +1 -1
- studyfetch_sdk/resources/v1/__init__.py +0 -98
- studyfetch_sdk/resources/v1/materials/upload.py +24 -0
- studyfetch_sdk/resources/v1/v1.py +0 -224
- studyfetch_sdk/types/v1/__init__.py +0 -23
- studyfetch_sdk/types/v1/component_create_params.py +24 -0
- studyfetch_sdk/types/v1/component_generate_embed_params.py +7 -1
- studyfetch_sdk/types/v1/materials/upload_create_presigned_url_params.py +3 -0
- studyfetch_sdk/types/v1/materials/upload_upload_file_and_process_params.py +3 -0
- studyfetch_sdk/types/v1/materials/upload_upload_file_params.py +3 -0
- {studyfetch_sdk-0.1.0a19.dist-info → studyfetch_sdk-0.1.0a20.dist-info}/METADATA +1 -1
- {studyfetch_sdk-0.1.0a19.dist-info → studyfetch_sdk-0.1.0a20.dist-info}/RECORD +15 -70
- studyfetch_sdk/resources/v1/audio_recaps/__init__.py +0 -33
- studyfetch_sdk/resources/v1/audio_recaps/audio_recaps.py +0 -328
- studyfetch_sdk/resources/v1/audio_recaps/sections.py +0 -250
- studyfetch_sdk/resources/v1/chat/__init__.py +0 -47
- studyfetch_sdk/resources/v1/chat/chat.py +0 -574
- studyfetch_sdk/resources/v1/chat/sessions.py +0 -222
- studyfetch_sdk/resources/v1/chat/test.py +0 -190
- studyfetch_sdk/resources/v1/data_analyst/__init__.py +0 -47
- studyfetch_sdk/resources/v1/data_analyst/data_analyst.py +0 -582
- studyfetch_sdk/resources/v1/data_analyst/sessions.py +0 -222
- studyfetch_sdk/resources/v1/data_analyst/test.py +0 -190
- studyfetch_sdk/resources/v1/explainers.py +0 -441
- studyfetch_sdk/resources/v1/flashcards.py +0 -783
- studyfetch_sdk/resources/v1/scenarios/__init__.py +0 -61
- studyfetch_sdk/resources/v1/scenarios/component.py +0 -426
- studyfetch_sdk/resources/v1/scenarios/scenarios.py +0 -936
- studyfetch_sdk/resources/v1/scenarios/sessions.py +0 -236
- studyfetch_sdk/resources/v1/scenarios/submissions/__init__.py +0 -33
- studyfetch_sdk/resources/v1/scenarios/submissions/submissions.py +0 -102
- studyfetch_sdk/resources/v1/scenarios/submissions/user.py +0 -210
- studyfetch_sdk/resources/v1/tests/__init__.py +0 -33
- studyfetch_sdk/resources/v1/tests/component.py +0 -160
- studyfetch_sdk/resources/v1/tests/tests.py +0 -682
- studyfetch_sdk/types/v1/audio_recaps/__init__.py +0 -3
- studyfetch_sdk/types/v1/chat/__init__.py +0 -5
- studyfetch_sdk/types/v1/chat/session_retrieve_params.py +0 -11
- studyfetch_sdk/types/v1/chat_get_session_params.py +0 -13
- studyfetch_sdk/types/v1/chat_send_message_params.py +0 -54
- studyfetch_sdk/types/v1/chat_stream_params.py +0 -28
- studyfetch_sdk/types/v1/data_analyst/__init__.py +0 -5
- studyfetch_sdk/types/v1/data_analyst/session_retrieve_params.py +0 -11
- studyfetch_sdk/types/v1/data_analyst_retrieve_session_params.py +0 -13
- studyfetch_sdk/types/v1/data_analyst_send_message_params.py +0 -54
- studyfetch_sdk/types/v1/data_analyst_stream_params.py +0 -28
- studyfetch_sdk/types/v1/explainer_create_params.py +0 -45
- studyfetch_sdk/types/v1/explainer_handle_webhook_params.py +0 -53
- studyfetch_sdk/types/v1/flashcard_batch_process_params.py +0 -36
- studyfetch_sdk/types/v1/flashcard_batch_process_response.py +0 -39
- studyfetch_sdk/types/v1/flashcard_get_algorithm_response.py +0 -37
- studyfetch_sdk/types/v1/flashcard_get_all_params.py +0 -23
- studyfetch_sdk/types/v1/flashcard_get_due_params.py +0 -19
- studyfetch_sdk/types/v1/flashcard_get_stats_params.py +0 -17
- studyfetch_sdk/types/v1/flashcard_get_types_response.py +0 -14
- studyfetch_sdk/types/v1/flashcard_rate_params.py +0 -23
- studyfetch_sdk/types/v1/scenario_create_params.py +0 -48
- studyfetch_sdk/types/v1/scenario_submit_answer_params.py +0 -18
- studyfetch_sdk/types/v1/scenario_update_params.py +0 -45
- studyfetch_sdk/types/v1/scenarios/__init__.py +0 -5
- studyfetch_sdk/types/v1/scenarios/component_update_params.py +0 -45
- studyfetch_sdk/types/v1/scenarios/submissions/__init__.py +0 -3
- studyfetch_sdk/types/v1/test_create_params.py +0 -20
- studyfetch_sdk/types/v1/test_retake_params.py +0 -14
- studyfetch_sdk/types/v1/test_submit_answer_params.py +0 -20
- studyfetch_sdk/types/v1/test_submit_params.py +0 -14
- studyfetch_sdk/types/v1/tests/__init__.py +0 -3
- {studyfetch_sdk-0.1.0a19.dist-info → studyfetch_sdk-0.1.0a20.dist-info}/WHEEL +0 -0
- {studyfetch_sdk-0.1.0a19.dist-info → studyfetch_sdk-0.1.0a20.dist-info}/licenses/LICENSE +0 -0
@@ -5,56 +5,33 @@ from __future__ import annotations
|
|
5
5
|
from .material import Material as Material
|
6
6
|
from .component import Component as Component
|
7
7
|
from .content_param import ContentParam as ContentParam
|
8
|
-
from .chat_stream_params import ChatStreamParams as ChatStreamParams
|
9
8
|
from .folder_list_params import FolderListParams as FolderListParams
|
10
|
-
from .test_create_params import TestCreateParams as TestCreateParams
|
11
|
-
from .test_retake_params import TestRetakeParams as TestRetakeParams
|
12
|
-
from .test_submit_params import TestSubmitParams as TestSubmitParams
|
13
9
|
from .embed_verify_params import EmbedVerifyParams as EmbedVerifyParams
|
14
10
|
from .folder_create_params import FolderCreateParams as FolderCreateParams
|
15
11
|
from .folder_update_params import FolderUpdateParams as FolderUpdateParams
|
16
12
|
from .material_list_params import MaterialListParams as MaterialListParams
|
17
13
|
from .material_move_params import MaterialMoveParams as MaterialMoveParams
|
18
14
|
from .component_list_params import ComponentListParams as ComponentListParams
|
19
|
-
from .flashcard_rate_params import FlashcardRateParams as FlashcardRateParams
|
20
15
|
from .embed_get_theme_params import EmbedGetThemeParams as EmbedGetThemeParams
|
21
16
|
from .material_create_params import MaterialCreateParams as MaterialCreateParams
|
22
17
|
from .material_list_response import MaterialListResponse as MaterialListResponse
|
23
18
|
from .material_rename_params import MaterialRenameParams as MaterialRenameParams
|
24
19
|
from .material_search_params import MaterialSearchParams as MaterialSearchParams
|
25
|
-
from .scenario_create_params import ScenarioCreateParams as ScenarioCreateParams
|
26
|
-
from .scenario_update_params import ScenarioUpdateParams as ScenarioUpdateParams
|
27
20
|
from .usage_get_stats_params import UsageGetStatsParams as UsageGetStatsParams
|
28
|
-
from .chat_get_session_params import ChatGetSessionParams as ChatGetSessionParams
|
29
21
|
from .component_create_params import ComponentCreateParams as ComponentCreateParams
|
30
22
|
from .component_list_response import ComponentListResponse as ComponentListResponse
|
31
23
|
from .component_update_params import ComponentUpdateParams as ComponentUpdateParams
|
32
|
-
from .explainer_create_params import ExplainerCreateParams as ExplainerCreateParams
|
33
24
|
from .material_debug_response import MaterialDebugResponse as MaterialDebugResponse
|
34
|
-
from .chat_send_message_params import ChatSendMessageParams as ChatSendMessageParams
|
35
|
-
from .flashcard_get_all_params import FlashcardGetAllParams as FlashcardGetAllParams
|
36
|
-
from .flashcard_get_due_params import FlashcardGetDueParams as FlashcardGetDueParams
|
37
25
|
from .material_search_response import MaterialSearchResponse as MaterialSearchResponse
|
38
26
|
from .usage_get_summary_params import UsageGetSummaryParams as UsageGetSummaryParams
|
39
27
|
from .usage_list_events_params import UsageListEventsParams as UsageListEventsParams
|
40
|
-
from .test_submit_answer_params import TestSubmitAnswerParams as TestSubmitAnswerParams
|
41
28
|
from .assignment_grader_response import AssignmentGraderResponse as AssignmentGraderResponse
|
42
|
-
from .data_analyst_stream_params import DataAnalystStreamParams as DataAnalystStreamParams
|
43
|
-
from .flashcard_get_stats_params import FlashcardGetStatsParams as FlashcardGetStatsParams
|
44
|
-
from .flashcard_get_types_response import FlashcardGetTypesResponse as FlashcardGetTypesResponse
|
45
29
|
from .material_batch_create_params import MaterialBatchCreateParams as MaterialBatchCreateParams
|
46
|
-
from .scenario_submit_answer_params import ScenarioSubmitAnswerParams as ScenarioSubmitAnswerParams
|
47
|
-
from .flashcard_batch_process_params import FlashcardBatchProcessParams as FlashcardBatchProcessParams
|
48
30
|
from .material_batch_create_response import MaterialBatchCreateResponse as MaterialBatchCreateResponse
|
49
31
|
from .assignment_grader_create_params import AssignmentGraderCreateParams as AssignmentGraderCreateParams
|
50
32
|
from .component_generate_embed_params import ComponentGenerateEmbedParams as ComponentGenerateEmbedParams
|
51
|
-
from .explainer_handle_webhook_params import ExplainerHandleWebhookParams as ExplainerHandleWebhookParams
|
52
|
-
from .data_analyst_send_message_params import DataAnalystSendMessageParams as DataAnalystSendMessageParams
|
53
|
-
from .flashcard_batch_process_response import FlashcardBatchProcessResponse as FlashcardBatchProcessResponse
|
54
|
-
from .flashcard_get_algorithm_response import FlashcardGetAlgorithmResponse as FlashcardGetAlgorithmResponse
|
55
33
|
from .material_get_download_url_params import MaterialGetDownloadURLParams as MaterialGetDownloadURLParams
|
56
34
|
from .component_generate_embed_response import ComponentGenerateEmbedResponse as ComponentGenerateEmbedResponse
|
57
35
|
from .assignment_grader_get_all_response import AssignmentGraderGetAllResponse as AssignmentGraderGetAllResponse
|
58
36
|
from .material_create_and_process_params import MaterialCreateAndProcessParams as MaterialCreateAndProcessParams
|
59
37
|
from .material_get_download_url_response import MaterialGetDownloadURLResponse as MaterialGetDownloadURLResponse
|
60
|
-
from .data_analyst_retrieve_session_params import DataAnalystRetrieveSessionParams as DataAnalystRetrieveSessionParams
|
@@ -11,6 +11,7 @@ __all__ = [
|
|
11
11
|
"ComponentCreateParams",
|
12
12
|
"Config",
|
13
13
|
"ConfigChatConfigDto",
|
14
|
+
"ConfigChatConfigDtoGuardrailRule",
|
14
15
|
"ConfigDataAnalystConfigDto",
|
15
16
|
"ConfigFlashcardsConfigDto",
|
16
17
|
"ConfigScenariosConfigDto",
|
@@ -54,6 +55,23 @@ class ComponentCreateParams(TypedDict, total=False):
|
|
54
55
|
"""Additional metadata"""
|
55
56
|
|
56
57
|
|
58
|
+
class ConfigChatConfigDtoGuardrailRule(TypedDict, total=False):
|
59
|
+
id: Required[str]
|
60
|
+
"""Unique identifier for the rule"""
|
61
|
+
|
62
|
+
action: Required[Literal["block", "warn", "modify"]]
|
63
|
+
"""Action to take when rule is triggered"""
|
64
|
+
|
65
|
+
condition: Required[str]
|
66
|
+
"""Condition to check"""
|
67
|
+
|
68
|
+
description: Required[str]
|
69
|
+
"""Description of the rule"""
|
70
|
+
|
71
|
+
message: str
|
72
|
+
"""Message to show when rule is triggered"""
|
73
|
+
|
74
|
+
|
57
75
|
class ConfigChatConfigDto(TypedDict, total=False):
|
58
76
|
model: Required[str]
|
59
77
|
"""AI model to use"""
|
@@ -64,6 +82,9 @@ class ConfigChatConfigDto(TypedDict, total=False):
|
|
64
82
|
enable_follow_ups: Annotated[bool, PropertyInfo(alias="enableFollowUps")]
|
65
83
|
"""Enable follow-up questions"""
|
66
84
|
|
85
|
+
enable_guardrails: Annotated[bool, PropertyInfo(alias="enableGuardrails")]
|
86
|
+
"""Enable guardrails for content moderation"""
|
87
|
+
|
67
88
|
enable_history: Annotated[bool, PropertyInfo(alias="enableHistory")]
|
68
89
|
"""Enable conversation history"""
|
69
90
|
|
@@ -79,6 +100,9 @@ class ConfigChatConfigDto(TypedDict, total=False):
|
|
79
100
|
folders: List[str]
|
80
101
|
"""Folder IDs"""
|
81
102
|
|
103
|
+
guardrail_rules: Annotated[Iterable[ConfigChatConfigDtoGuardrailRule], PropertyInfo(alias="guardrailRules")]
|
104
|
+
"""Guardrail rules for content moderation"""
|
105
|
+
|
82
106
|
materials: List[str]
|
83
107
|
"""Material IDs"""
|
84
108
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
from __future__ import annotations
|
4
4
|
|
5
5
|
from typing import List
|
6
|
-
from typing_extensions import Annotated, TypedDict
|
6
|
+
from typing_extensions import Required, Annotated, TypedDict
|
7
7
|
|
8
8
|
from ..._utils import PropertyInfo
|
9
9
|
|
@@ -37,12 +37,18 @@ class ComponentGenerateEmbedParams(TypedDict, total=False):
|
|
37
37
|
|
38
38
|
|
39
39
|
class Features(TypedDict, total=False):
|
40
|
+
enable_bad_words_filter: Required[Annotated[bool, PropertyInfo(alias="enableBadWordsFilter")]]
|
41
|
+
"""Enable bad words filter"""
|
42
|
+
|
40
43
|
enable_component_creation: Annotated[bool, PropertyInfo(alias="enableComponentCreation")]
|
41
44
|
"""Enable component creation"""
|
42
45
|
|
43
46
|
enable_follow_ups: Annotated[bool, PropertyInfo(alias="enableFollowUps")]
|
44
47
|
"""Enable follow-up questions"""
|
45
48
|
|
49
|
+
enable_guardrails: Annotated[bool, PropertyInfo(alias="enableGuardrails")]
|
50
|
+
"""Enable guardrails"""
|
51
|
+
|
46
52
|
enable_history: Annotated[bool, PropertyInfo(alias="enableHistory")]
|
47
53
|
"""Enable history"""
|
48
54
|
|
@@ -19,5 +19,8 @@ class UploadCreatePresignedURLParams(TypedDict, total=False):
|
|
19
19
|
name: Required[str]
|
20
20
|
"""Display name for the material"""
|
21
21
|
|
22
|
+
extract_images: Annotated[bool, PropertyInfo(alias="extractImages")]
|
23
|
+
"""Whether to extract images from files"""
|
24
|
+
|
22
25
|
folder_id: Annotated[str, PropertyInfo(alias="folderId")]
|
23
26
|
"""Folder ID to place the material in"""
|
@@ -16,6 +16,9 @@ class UploadUploadFileAndProcessParams(TypedDict, total=False):
|
|
16
16
|
name: Required[str]
|
17
17
|
"""Material name"""
|
18
18
|
|
19
|
+
extract_images: Annotated[str, PropertyInfo(alias="extractImages")]
|
20
|
+
"""Whether to extract images from files (true/false, default: true)"""
|
21
|
+
|
19
22
|
folder_id: Annotated[str, PropertyInfo(alias="folderId")]
|
20
23
|
"""Folder ID (optional)"""
|
21
24
|
|
@@ -16,5 +16,8 @@ class UploadUploadFileParams(TypedDict, total=False):
|
|
16
16
|
name: Required[str]
|
17
17
|
"""Material name"""
|
18
18
|
|
19
|
+
extract_images: Annotated[str, PropertyInfo(alias="extractImages")]
|
20
|
+
"""Whether to extract images from files (true/false, default: true)"""
|
21
|
+
|
19
22
|
folder_id: Annotated[str, PropertyInfo(alias="folderId")]
|
20
23
|
"""Folder ID (optional)"""
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: studyfetch_sdk
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.0a20
|
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=
|
8
|
+
studyfetch_sdk/_models.py,sha256=KvjsMfb88XZlFUKVoOxr8OyDj47MhoH2OKqWNEbBhk4,30010
|
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=
|
14
|
+
studyfetch_sdk/_version.py,sha256=Sa8Iq07YFRZCekXhCJBF90bzG3xKScCuDWNB5qG6WNw,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,24 +25,11 @@ 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=
|
28
|
+
studyfetch_sdk/resources/v1/__init__.py,sha256=694ULqkVD3ciGPbU0H9RRivC9Vr58uKjrWYFj1YUxKQ,3859
|
29
29
|
studyfetch_sdk/resources/v1/assignment_grader.py,sha256=xNI0G7xgz_eC1MR9grPZi-RAaPvSgwQA0rkJhrUx90w,16329
|
30
30
|
studyfetch_sdk/resources/v1/components.py,sha256=XLeKvBQ92xGGFjtTc7YL42Yv6EqY-70Rg0DW83jIQFc,35577
|
31
|
-
studyfetch_sdk/resources/v1/explainers.py,sha256=W5Kq3Gpwqw3kBy9v-qpV5FKxH1HAm5_yk1NgACM-Mec,16047
|
32
|
-
studyfetch_sdk/resources/v1/flashcards.py,sha256=_-zZUd8Ja9k2895cxLJsLbN73ZTIrkJaComGCSMkbCk,29242
|
33
31
|
studyfetch_sdk/resources/v1/folders.py,sha256=o43HhcVhqF3t7xWMFFNIiMPElhoqkXtaCTVjEE5s5so,27436
|
34
|
-
studyfetch_sdk/resources/v1/v1.py,sha256=
|
35
|
-
studyfetch_sdk/resources/v1/audio_recaps/__init__.py,sha256=X6oJGmyaqUBFChSn8l0r-EHjCZos36O10zfFYWuid2w,1094
|
36
|
-
studyfetch_sdk/resources/v1/audio_recaps/audio_recaps.py,sha256=XAfSWFDbjUSp9bKjDVHqLyrEv3kNtTYSaLtWPRFIzdc,12630
|
37
|
-
studyfetch_sdk/resources/v1/audio_recaps/sections.py,sha256=AcYtFSNemNP2T-fJn2nZkrPNNpaEtqiwPNuTpual2Lw,9451
|
38
|
-
studyfetch_sdk/resources/v1/chat/__init__.py,sha256=WSv53HDkoj5Ec37hiJlCV2V-ZquTjYyG5hU9cOdZPBk,1426
|
39
|
-
studyfetch_sdk/resources/v1/chat/chat.py,sha256=PFySkZ3HsxthOYe5QZYAKkSwJryo6tE7Tl53f7DscYo,21666
|
40
|
-
studyfetch_sdk/resources/v1/chat/sessions.py,sha256=mjcTJFft2zXyQlqhARz_J5md1BfAD3uhDVp-olow83o,8479
|
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
|
32
|
+
studyfetch_sdk/resources/v1/v1.py,sha256=0UUOc_WHVdtH8Ty2RjfLp3hPjXWUBfGVY0cfPrkau04,12821
|
46
33
|
studyfetch_sdk/resources/v1/embed/__init__.py,sha256=VJ7xFoda7Gx3MH2plj_RN3NF5lmfKMFB1IHU0StdTzo,1028
|
47
34
|
studyfetch_sdk/resources/v1/embed/component.py,sha256=vFArqNnLaCGiHAKt4dhF3IBE950KMJbCqX5En2Tj0ls,10491
|
48
35
|
studyfetch_sdk/resources/v1/embed/embed.py,sha256=Tbny2GdlacLtNE-TfYRqYsVNIcOmPOy16cI1IrAHLmM,12582
|
@@ -50,17 +37,7 @@ studyfetch_sdk/resources/v1/materials/__init__.py,sha256=tVk8p-CapS6r8iWZXSBxwA0
|
|
50
37
|
studyfetch_sdk/resources/v1/materials/bulk.py,sha256=7yWgp9Jfclm9ppZhk4VKZxBpOVr1UOBBzos8Nj3HDEo,6511
|
51
38
|
studyfetch_sdk/resources/v1/materials/materials.py,sha256=R9RMPqm_VR8ulCdevDTcjHaFLsMlyAryN4Zq3S0-U7Q,48101
|
52
39
|
studyfetch_sdk/resources/v1/materials/test.py,sha256=Vby03Ow171VfeSiM-i1s4pSkqTttY7ggFeCjJHk2dDk,11875
|
53
|
-
studyfetch_sdk/resources/v1/materials/upload.py,sha256=
|
54
|
-
studyfetch_sdk/resources/v1/scenarios/__init__.py,sha256=WrMn3vQJgHGQzWKq5SRUTMMvRd4p15Bt5JjZpHhKHZs,2071
|
55
|
-
studyfetch_sdk/resources/v1/scenarios/component.py,sha256=ipHZj58PQfD1q1mNHLR0-zRNl6okOsMrqYaez5Bmn6c,15991
|
56
|
-
studyfetch_sdk/resources/v1/scenarios/scenarios.py,sha256=q_gX2IdWAogGNy6G0WsdNpgvNE0_Cf3GeKy7ukKc4M0,34658
|
57
|
-
studyfetch_sdk/resources/v1/scenarios/sessions.py,sha256=nTa6kBd5SoCBTm4DoIdH_u_nj1bM5dIbo2yAy-rMzKg,8949
|
58
|
-
studyfetch_sdk/resources/v1/scenarios/submissions/__init__.py,sha256=rTtsEfGVta9DIHDkyL4p32yLV21bFcxkE-LRb_bpFvU,1041
|
59
|
-
studyfetch_sdk/resources/v1/scenarios/submissions/submissions.py,sha256=2wj6bWW4NXw3EjsCDQySGYOAym64QIUzLqp6UelJsqo,3773
|
60
|
-
studyfetch_sdk/resources/v1/scenarios/submissions/user.py,sha256=n4QlwOw90vyFMGD7Akv_k4ZMyuWT6FNb9o3Fnsl7SZs,7916
|
61
|
-
studyfetch_sdk/resources/v1/tests/__init__.py,sha256=7-K6i3WJPRCoMSOatJEqUhlz74S0wr4S-yrWr2X-LTA,1028
|
62
|
-
studyfetch_sdk/resources/v1/tests/component.py,sha256=MJZIo4-ES4tkY9P1FJl8phjkQxGG8FBCe99ar0I_un4,6013
|
63
|
-
studyfetch_sdk/resources/v1/tests/tests.py,sha256=BGwXClZ8YkzegN80R0WDIrvK3WN1-ujtYkfR33ARhVU,24870
|
40
|
+
studyfetch_sdk/resources/v1/materials/upload.py,sha256=hcMjpp7JeKSNvG2Dt4xbEZYtOCoF8j7T0DaDK2hqyAU,30732
|
64
41
|
studyfetch_sdk/resources/v1/upload/__init__.py,sha256=N5r6jpSMe43dezq-6RBAWLVlL3-Z76lU7DG53phDGr8,1041
|
65
42
|
studyfetch_sdk/resources/v1/upload/component.py,sha256=Q-8VO-XiWYDFpzdap-NcP62V77dvMXfeJouFv8ELXkM,21803
|
66
43
|
studyfetch_sdk/resources/v1/upload/upload.py,sha256=RBkrsVi5_8qIqdYKypnSqj44ONvwW7u2XXIlpuJsKSg,3736
|
@@ -68,36 +45,20 @@ studyfetch_sdk/resources/v1/usage/__init__.py,sha256=zUBe7msw9tyZplhmwNkhbCfRigN
|
|
68
45
|
studyfetch_sdk/resources/v1/usage/analyst.py,sha256=WJfbjv57r1ZLgNytUzuEH7J_HYPsbXWhk2Ae6q4QBuA,17402
|
69
46
|
studyfetch_sdk/resources/v1/usage/usage.py,sha256=HAG7FfTIiIihB0dtbZEmluKDD0GWqKWrfLp03gcdPjU,19694
|
70
47
|
studyfetch_sdk/types/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
71
|
-
studyfetch_sdk/types/v1/__init__.py,sha256=
|
48
|
+
studyfetch_sdk/types/v1/__init__.py,sha256=UFZVRgMNP-rC9_cY2EGTAaf727Ub5M2cgTjpoz4d6kU,2925
|
72
49
|
studyfetch_sdk/types/v1/assignment_grader_create_params.py,sha256=o-U_-0ZHJxwpL3pSEW41SmsHz-sOP490i5P8EA5A-Ws,1246
|
73
50
|
studyfetch_sdk/types/v1/assignment_grader_get_all_response.py,sha256=FidqfpFC-PX05_knGWicLerCeSqJiScW2IbzPyzBb2c,339
|
74
51
|
studyfetch_sdk/types/v1/assignment_grader_response.py,sha256=KJm2_mg42eESgXNP2nkIxKvd04-rzQdQd6IeQCghJPo,1142
|
75
|
-
studyfetch_sdk/types/v1/chat_get_session_params.py,sha256=Iv3O6eF4DvTYTBVQVyVR4trfZNQxFhipLPRWDF_VWq4,378
|
76
|
-
studyfetch_sdk/types/v1/chat_send_message_params.py,sha256=BRxjNsVXsqcBbdrp4J5TQGjjNPJ_bz7uXw3pnc-x0oU,1454
|
77
|
-
studyfetch_sdk/types/v1/chat_stream_params.py,sha256=Aqp2Vdsa35PAH-75kaO_ZYlkqGrCgDZ5EyYTTLRAJoE,695
|
78
52
|
studyfetch_sdk/types/v1/component.py,sha256=ci484sfjcKqNkjD-1lsj-FqodAauBb8Kf7UE0qHgD20,1247
|
79
|
-
studyfetch_sdk/types/v1/component_create_params.py,sha256=
|
80
|
-
studyfetch_sdk/types/v1/component_generate_embed_params.py,sha256=
|
53
|
+
studyfetch_sdk/types/v1/component_create_params.py,sha256=UnTJSJQ9EYBEBgUwXCVAPXCUzjmm_qKsZp0MUl_MqaU,12610
|
54
|
+
studyfetch_sdk/types/v1/component_generate_embed_params.py,sha256=acWgEeaQt3Yyu9DHs9jkUCKC4NRz08pQdrUQPtG7TC4,3320
|
81
55
|
studyfetch_sdk/types/v1/component_generate_embed_response.py,sha256=xhbqEpAt_Q7yzD4xjWITs_jXYUD6ElrH4aQfNEunI3Y,922
|
82
56
|
studyfetch_sdk/types/v1/component_list_params.py,sha256=ROPHM8kS3jVMVDfWcYZyv1Ecn5lZ879uw_b2IRNxgUQ,512
|
83
57
|
studyfetch_sdk/types/v1/component_list_response.py,sha256=BYGoH8x8UJdekr8HXdbcOw_LoKWULlIdN6sn1uL5RuY,274
|
84
58
|
studyfetch_sdk/types/v1/component_update_params.py,sha256=IkSFyldrto9H_F_4GWIGG1WYpYFEuYsAi-29dmo9vno,365
|
85
59
|
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
|
89
60
|
studyfetch_sdk/types/v1/embed_get_theme_params.py,sha256=wKZn4X-Ne29dOrxEBkGThxBPTdhPTgb-CzV65KvSFVw,308
|
90
61
|
studyfetch_sdk/types/v1/embed_verify_params.py,sha256=hixgK7Uyhi2Oaj0t5Q5sbFVUYGdvmMsk_2-fu_2C2nw,314
|
91
|
-
studyfetch_sdk/types/v1/explainer_create_params.py,sha256=DfTTxdkaUezNpD3TwTSyWZDsqcj3ZQ_pi-NiFmhldCk,1365
|
92
|
-
studyfetch_sdk/types/v1/explainer_handle_webhook_params.py,sha256=FroVkIVnrp3n_Jf5q5gfl4OaL41gswNRG2EZHXaeekY,1426
|
93
|
-
studyfetch_sdk/types/v1/flashcard_batch_process_params.py,sha256=9rKglWAilYXnfqPSOdKLQWZ7DOrU45S20eLLGn6xsSk,1044
|
94
|
-
studyfetch_sdk/types/v1/flashcard_batch_process_response.py,sha256=UKredDT61O5KA56gvhbJlF1qa8LzrdpLrD4ulzQOFlw,891
|
95
|
-
studyfetch_sdk/types/v1/flashcard_get_algorithm_response.py,sha256=HdX5UB4l-jZpNpLN0-UZfQL2nxpd-dmypxO-dQEH8Eo,863
|
96
|
-
studyfetch_sdk/types/v1/flashcard_get_all_params.py,sha256=VVEPwJ1sQ03CqUWM-bvmPmy4M2j2MEMvTPU6Qp7aflk,563
|
97
|
-
studyfetch_sdk/types/v1/flashcard_get_due_params.py,sha256=n_05aRmk05p-WXctVdE57Gm-lMChCn-efmy1Tl2Kq-Q,509
|
98
|
-
studyfetch_sdk/types/v1/flashcard_get_stats_params.py,sha256=ghcZfsKIM4au3PtoBpiw-3iGNEy-86co8vzIqLKhZ9o,483
|
99
|
-
studyfetch_sdk/types/v1/flashcard_get_types_response.py,sha256=5Ik-pRsivsnFTytCNvnw0cDZA-95ONMxNY2goXUucLI,371
|
100
|
-
studyfetch_sdk/types/v1/flashcard_rate_params.py,sha256=SrGtfy4XU34M9WYIVQ89uJpmkSmIS9JUzLg2t3_oez8,630
|
101
62
|
studyfetch_sdk/types/v1/folder_create_params.py,sha256=7aOh4pSBdnJ0kLH722pf2gNeJJXpGdf3ldadMcMtXkY,453
|
102
63
|
studyfetch_sdk/types/v1/folder_list_params.py,sha256=BPzBIqjQrCyKuI3DcER1kFRTx15OSUpvsrsMgHXPdAE,391
|
103
64
|
studyfetch_sdk/types/v1/folder_update_params.py,sha256=WynpsS4j_cPwqPjAGTXVcr1v0daB4S2F1MF8uuV6vNI,430
|
@@ -115,21 +76,9 @@ studyfetch_sdk/types/v1/material_move_params.py,sha256=ghJzdKx8VzuchJ-chN4rPTkSc
|
|
115
76
|
studyfetch_sdk/types/v1/material_rename_params.py,sha256=RltDhuGmhBZY58Ol_1BE-wecinrRNvvDlnsW3FKo_MA,323
|
116
77
|
studyfetch_sdk/types/v1/material_search_params.py,sha256=2MokaAVVTcnnHVjDTn_YEOVvhD9tGyU1JeCF3gvaL4s,753
|
117
78
|
studyfetch_sdk/types/v1/material_search_response.py,sha256=9XSBBfmdQb3Aw2yCs43d43qRMQ-L6cho1an5JLaQQ8E,1282
|
118
|
-
studyfetch_sdk/types/v1/scenario_create_params.py,sha256=anCK913P4vYEtgY6GnxxxCxRnUazeV1H1NoyBV78sT8,1281
|
119
|
-
studyfetch_sdk/types/v1/scenario_submit_answer_params.py,sha256=g1idbU9OxRC_qrU7bOVNuFcXtKa2ZiJgy7KBR2mJWSM,597
|
120
|
-
studyfetch_sdk/types/v1/scenario_update_params.py,sha256=F83xky9wzolK2VmTkTUqfrNwXB-h-H__8YYy7oXLz8A,1168
|
121
|
-
studyfetch_sdk/types/v1/test_create_params.py,sha256=-MrR4d4Igyp7FD9xni5Rh_Gn3JgCZyYGagXUG3GDvQc,537
|
122
|
-
studyfetch_sdk/types/v1/test_retake_params.py,sha256=pSxTOQ8Io9D_ZquvrbwdbUGtpjG-idDfBd-28i6gQVM,379
|
123
|
-
studyfetch_sdk/types/v1/test_submit_answer_params.py,sha256=KnXliGsq5TTCZIno5It7rK5pi_qttEavBw86X_yhyj0,549
|
124
|
-
studyfetch_sdk/types/v1/test_submit_params.py,sha256=ra-n9uNBDSqkkiomBt_y3RtGMpVyVJXiAqMajtZBSk4,379
|
125
79
|
studyfetch_sdk/types/v1/usage_get_stats_params.py,sha256=TQwpTxrPjfa7OA-UdYOVppbZZjE9cx04VajXk-Pgvvc,682
|
126
80
|
studyfetch_sdk/types/v1/usage_get_summary_params.py,sha256=ZFd6VwpQxL59a2akaJDRZbJJcNbZ88KU4S6UreCZr4U,768
|
127
81
|
studyfetch_sdk/types/v1/usage_list_events_params.py,sha256=exIPdq6GwwDs5KmjzHE5EJc7dslgfCDqL08b89hl3m8,1769
|
128
|
-
studyfetch_sdk/types/v1/audio_recaps/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
129
|
-
studyfetch_sdk/types/v1/chat/__init__.py,sha256=wYABOEkbpJ2giFls8t8N32vNezDWQvFRnPw_giWy58g,207
|
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
|
133
82
|
studyfetch_sdk/types/v1/embed/__init__.py,sha256=PY0v530kkkL8N0ABYvRpyNG0B4-56axqoZ1Gbp6GYq0,303
|
134
83
|
studyfetch_sdk/types/v1/embed/component_interact_params.py,sha256=IdYB5R3TK9KaOQgXP8HbDA4_1bmkPeCxNSORu_Pl1Y0,341
|
135
84
|
studyfetch_sdk/types/v1/embed/component_retrieve_params.py,sha256=At4Eu0g84kblyZVKKBjwtFBc5UcG3XbhS97RkDgysMs,316
|
@@ -141,16 +90,12 @@ studyfetch_sdk/types/v1/materials/test_process_epub_response.py,sha256=HLWRvESxs
|
|
141
90
|
studyfetch_sdk/types/v1/materials/test_process_image_response.py,sha256=m2m4dUfRp-dmyhmL-ayqiok3yGPI06g0lNa1Zziej4Y,713
|
142
91
|
studyfetch_sdk/types/v1/materials/test_process_video_response.py,sha256=hWXrYymCN5FZX-m5_zmOnv7pqYSBEoHtIDQ0PY2umgk,552
|
143
92
|
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=
|
93
|
+
studyfetch_sdk/types/v1/materials/upload_create_presigned_url_params.py,sha256=pwRG7ieGMCULgYTOWtvC7ZbdDTFSeyIrdoJKQV2l3m8,793
|
145
94
|
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=
|
147
|
-
studyfetch_sdk/types/v1/materials/upload_upload_file_params.py,sha256=
|
95
|
+
studyfetch_sdk/types/v1/materials/upload_upload_file_and_process_params.py,sha256=rXWq3EeJGe1mx_HxstrFQZKqkhnAURmlzd5fkdBfhuc,956
|
96
|
+
studyfetch_sdk/types/v1/materials/upload_upload_file_params.py,sha256=xXr5PyBMznRe4HtmqcBOrUbc_S4hzeTLJGWWQ_5XA-I,669
|
148
97
|
studyfetch_sdk/types/v1/materials/upload_upload_from_url_params.py,sha256=q4F7cBkJ7srXSkBosfiiApDETBz_lFJ0tPIUyHIUJXA,523
|
149
98
|
studyfetch_sdk/types/v1/materials/upload_upload_url_and_process_params.py,sha256=27MFaOv5xrEIwL_27YxSWx17hNZrCbmAMz_MOeaFrfU,827
|
150
|
-
studyfetch_sdk/types/v1/scenarios/__init__.py,sha256=2DyrawNlb-TstNKw0gUMlQaNSq-UAUcLhmOGElM0l0U,207
|
151
|
-
studyfetch_sdk/types/v1/scenarios/component_update_params.py,sha256=0wsa-_gN17TKmvhQBbCIQmN2gSEuCq2HBWjQaTqhFdk,1171
|
152
|
-
studyfetch_sdk/types/v1/scenarios/submissions/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
153
|
-
studyfetch_sdk/types/v1/tests/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
154
99
|
studyfetch_sdk/types/v1/upload/__init__.py,sha256=oVLQUp-Sxua2NMNauXzopFmF34HjL_KZMjxlqMu7zW8,845
|
155
100
|
studyfetch_sdk/types/v1/upload/component_complete_upload_params.py,sha256=B3-7nCdLI4S_q0qa8NBS7gNwL0F8ljYVvEbo9fwCkXQ,687
|
156
101
|
studyfetch_sdk/types/v1/upload/component_complete_upload_response.py,sha256=fOWcCnkzzLlYtwKjmdh4X4hlGVOKUNDA1DmnM5jb1ao,378
|
@@ -164,7 +109,7 @@ studyfetch_sdk/types/v1/usage/analyst_get_test_questions_params.py,sha256=yADHiE
|
|
164
109
|
studyfetch_sdk/types/v1/usage/analyst_list_chat_messages_params.py,sha256=aiT5FyLIiw94prXV-bY3ipPhclzIcCnaXF5BaGZUkik,552
|
165
110
|
studyfetch_sdk/types/v1/usage/analyst_list_chat_messages_response.py,sha256=lJ85gWKgsGGX0uRCsOUXkdzz_Y5JSX7x76St1C7pwy0,1014
|
166
111
|
studyfetch_sdk/types/v1/usage/analyst_list_events_params.py,sha256=wQplMMNjjeTOeNneqgWFQstxFHh4aXhpUeVGUZZeifk,1799
|
167
|
-
studyfetch_sdk-0.1.
|
168
|
-
studyfetch_sdk-0.1.
|
169
|
-
studyfetch_sdk-0.1.
|
170
|
-
studyfetch_sdk-0.1.
|
112
|
+
studyfetch_sdk-0.1.0a20.dist-info/METADATA,sha256=gc2TKW-qOumIlkd8KfGlNyB2f36CIzeZaXPgCY4kXqY,15518
|
113
|
+
studyfetch_sdk-0.1.0a20.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
114
|
+
studyfetch_sdk-0.1.0a20.dist-info/licenses/LICENSE,sha256=CsdbJMegH_AAWljUmVcwW0Cj_GyIm1hjw6qPqPnmdn4,11344
|
115
|
+
studyfetch_sdk-0.1.0a20.dist-info/RECORD,,
|
@@ -1,33 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
2
|
-
|
3
|
-
from .sections import (
|
4
|
-
SectionsResource,
|
5
|
-
AsyncSectionsResource,
|
6
|
-
SectionsResourceWithRawResponse,
|
7
|
-
AsyncSectionsResourceWithRawResponse,
|
8
|
-
SectionsResourceWithStreamingResponse,
|
9
|
-
AsyncSectionsResourceWithStreamingResponse,
|
10
|
-
)
|
11
|
-
from .audio_recaps import (
|
12
|
-
AudioRecapsResource,
|
13
|
-
AsyncAudioRecapsResource,
|
14
|
-
AudioRecapsResourceWithRawResponse,
|
15
|
-
AsyncAudioRecapsResourceWithRawResponse,
|
16
|
-
AudioRecapsResourceWithStreamingResponse,
|
17
|
-
AsyncAudioRecapsResourceWithStreamingResponse,
|
18
|
-
)
|
19
|
-
|
20
|
-
__all__ = [
|
21
|
-
"SectionsResource",
|
22
|
-
"AsyncSectionsResource",
|
23
|
-
"SectionsResourceWithRawResponse",
|
24
|
-
"AsyncSectionsResourceWithRawResponse",
|
25
|
-
"SectionsResourceWithStreamingResponse",
|
26
|
-
"AsyncSectionsResourceWithStreamingResponse",
|
27
|
-
"AudioRecapsResource",
|
28
|
-
"AsyncAudioRecapsResource",
|
29
|
-
"AudioRecapsResourceWithRawResponse",
|
30
|
-
"AsyncAudioRecapsResourceWithRawResponse",
|
31
|
-
"AudioRecapsResourceWithStreamingResponse",
|
32
|
-
"AsyncAudioRecapsResourceWithStreamingResponse",
|
33
|
-
]
|