structifyai 1.171.0__tar.gz → 1.172.0__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.
Files changed (572) hide show
  1. structifyai-1.172.0/.release-please-manifest.json +3 -0
  2. {structifyai-1.171.0 → structifyai-1.172.0}/CHANGELOG.md +9 -0
  3. {structifyai-1.171.0 → structifyai-1.172.0}/PKG-INFO +1 -1
  4. {structifyai-1.171.0 → structifyai-1.172.0}/api.md +3 -0
  5. {structifyai-1.171.0 → structifyai-1.172.0}/pyproject.toml +1 -1
  6. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_version.py +1 -1
  7. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/chat.py +98 -0
  8. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/polars.py +62 -18
  9. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/__init__.py +2 -0
  10. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/admin_list_jobs_response.py +2 -0
  11. structifyai-1.172.0/src/structify/types/admin_issue_found_response.py +9 -0
  12. structifyai-1.172.0/src/structify/types/chat_admin_issue_found_params.py +13 -0
  13. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/job_list_response.py +2 -0
  14. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/structure_run_async_params.py +2 -0
  15. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/tool_invocation.py +2 -0
  16. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_chat.py +93 -0
  17. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_structure.py +12 -2
  18. structifyai-1.171.0/.release-please-manifest.json +0 -3
  19. {structifyai-1.171.0 → structifyai-1.172.0}/.gitignore +0 -0
  20. {structifyai-1.171.0 → structifyai-1.172.0}/CONTRIBUTING.md +0 -0
  21. {structifyai-1.171.0 → structifyai-1.172.0}/LICENSE +0 -0
  22. {structifyai-1.171.0 → structifyai-1.172.0}/README.md +0 -0
  23. {structifyai-1.171.0 → structifyai-1.172.0}/SECURITY.md +0 -0
  24. {structifyai-1.171.0 → structifyai-1.172.0}/bin/check-release-environment +0 -0
  25. {structifyai-1.171.0 → structifyai-1.172.0}/bin/publish-pypi +0 -0
  26. {structifyai-1.171.0 → structifyai-1.172.0}/examples/.keep +0 -0
  27. {structifyai-1.171.0 → structifyai-1.172.0}/noxfile.py +0 -0
  28. {structifyai-1.171.0 → structifyai-1.172.0}/release-please-config.json +0 -0
  29. {structifyai-1.171.0 → structifyai-1.172.0}/requirements-dev.lock +0 -0
  30. {structifyai-1.171.0 → structifyai-1.172.0}/requirements.lock +0 -0
  31. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/__init__.py +0 -0
  32. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_base_client.py +0 -0
  33. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_client.py +0 -0
  34. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_compat.py +0 -0
  35. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_constants.py +0 -0
  36. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_exceptions.py +0 -0
  37. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_files.py +0 -0
  38. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_models.py +0 -0
  39. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_qs.py +0 -0
  40. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_resource.py +0 -0
  41. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_response.py +0 -0
  42. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_streaming.py +0 -0
  43. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_types.py +0 -0
  44. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_utils/__init__.py +0 -0
  45. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_utils/_compat.py +0 -0
  46. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_utils/_datetime_parse.py +0 -0
  47. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_utils/_logs.py +0 -0
  48. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_utils/_proxy.py +0 -0
  49. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_utils/_reflection.py +0 -0
  50. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_utils/_resources_proxy.py +0 -0
  51. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_utils/_streams.py +0 -0
  52. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_utils/_sync.py +0 -0
  53. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_utils/_transform.py +0 -0
  54. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_utils/_typing.py +0 -0
  55. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/_utils/_utils.py +0 -0
  56. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/lib/.keep +0 -0
  57. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/lib/__init__.py +0 -0
  58. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/lib/cost_confirmation.py +0 -0
  59. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/pagination.py +0 -0
  60. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/py.typed +0 -0
  61. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/__init__.py +0 -0
  62. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/admin/__init__.py +0 -0
  63. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/admin/admin.py +0 -0
  64. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/admin/chat_templates.py +0 -0
  65. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/admin/dataset.py +0 -0
  66. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/admin/functional_tests.py +0 -0
  67. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/admin/jobs.py +0 -0
  68. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/admin/sandbox.py +0 -0
  69. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/admin/teams.py +0 -0
  70. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/admin/users.py +0 -0
  71. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/code.py +0 -0
  72. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/connector_catalog/__init__.py +0 -0
  73. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/connector_catalog/admin.py +0 -0
  74. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/connector_catalog/connector_catalog.py +0 -0
  75. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/connectors/__init__.py +0 -0
  76. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/connectors/connectors.py +0 -0
  77. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/connectors/type_snippets.py +0 -0
  78. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/datasets/__init__.py +0 -0
  79. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/datasets/datasets.py +0 -0
  80. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/datasets/evaluate.py +0 -0
  81. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/documents.py +0 -0
  82. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/entities.py +0 -0
  83. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/external.py +0 -0
  84. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/external_dataframe_proxy.py +0 -0
  85. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/jobs.py +0 -0
  86. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/match.py +0 -0
  87. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/nango.py +0 -0
  88. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/projects.py +0 -0
  89. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/public_sessions.py +0 -0
  90. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/sandbox.py +0 -0
  91. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/scrape.py +0 -0
  92. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/server.py +0 -0
  93. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/sessions.py +0 -0
  94. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/slack.py +0 -0
  95. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/sources.py +0 -0
  96. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/structure.py +0 -0
  97. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/teams.py +0 -0
  98. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/user/__init__.py +0 -0
  99. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/user/api_keys.py +0 -0
  100. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/user/stripe.py +0 -0
  101. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/user/user.py +0 -0
  102. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/whitelabel.py +0 -0
  103. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/whitelabel_service.py +0 -0
  104. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/wiki.py +0 -0
  105. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/workflow.py +0 -0
  106. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/resources/workflow_schedule.py +0 -0
  107. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/accept_invitation_response.py +0 -0
  108. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/add_member_response.py +0 -0
  109. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/__init__.py +0 -0
  110. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/admin_dataset_return.py +0 -0
  111. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/admin_delete_jobs_response.py +0 -0
  112. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/admin_sandbox.py +0 -0
  113. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/admin_teams_list_response.py +0 -0
  114. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/cancel_subscription_response.py +0 -0
  115. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/chat_template_create_params.py +0 -0
  116. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/chat_template_list_params.py +0 -0
  117. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/chat_template_list_response.py +0 -0
  118. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/chat_template_update_params.py +0 -0
  119. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/create_subscription_response.py +0 -0
  120. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/dataset_get_by_id_params.py +0 -0
  121. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/expire_grants_response.py +0 -0
  122. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/extend_trial_response.py +0 -0
  123. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/functional_test.py +0 -0
  124. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/functional_test_create_params.py +0 -0
  125. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/functional_test_get_results_params.py +0 -0
  126. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/functional_test_link_chat_params.py +0 -0
  127. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/functional_test_list_response.py +0 -0
  128. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/functional_test_results_response.py +0 -0
  129. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/functional_test_system_prompt_response.py +0 -0
  130. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/functional_test_update_results_params.py +0 -0
  131. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/grant_credits_response.py +0 -0
  132. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/impersonate_response.py +0 -0
  133. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/job_delete_params.py +0 -0
  134. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/job_list_params.py +0 -0
  135. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/sandbox_list_params.py +0 -0
  136. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/sandbox_type.py +0 -0
  137. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/team_cancel_subscription_params.py +0 -0
  138. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/team_create_subscription_params.py +0 -0
  139. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/team_expire_grants_params.py +0 -0
  140. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/team_extend_trial_params.py +0 -0
  141. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/team_grant_credits_params.py +0 -0
  142. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/team_list_params.py +0 -0
  143. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/user.py +0 -0
  144. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/user_create_params.py +0 -0
  145. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/user_get_stats_params.py +0 -0
  146. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/user_get_stats_response.py +0 -0
  147. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/user_impersonate_params.py +0 -0
  148. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin/user_list_response.py +0 -0
  149. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/admin_grant_access_response.py +0 -0
  150. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/autofix_context.py +0 -0
  151. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_add_collaborator_params.py +0 -0
  152. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_add_git_commit_params.py +0 -0
  153. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_add_git_commit_response.py +0 -0
  154. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_copy_node_output_by_code_hash_params.py +0 -0
  155. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_copy_node_output_by_code_hash_response.py +0 -0
  156. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_copy_params.py +0 -0
  157. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_create_session_params.py +0 -0
  158. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_delete_files_params.py +0 -0
  159. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_delete_files_response.py +0 -0
  160. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_dependency.py +0 -0
  161. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_event.py +0 -0
  162. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_get_git_commit_response.py +0 -0
  163. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_get_partial_chats_response.py +0 -0
  164. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_get_session_timeline_response.py +0 -0
  165. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_grant_admin_override_params.py +0 -0
  166. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_list_sessions_params.py +0 -0
  167. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_list_templates_response.py +0 -0
  168. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_load_files_params.py +0 -0
  169. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_load_files_response.py +0 -0
  170. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_prompt.py +0 -0
  171. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_revert_to_commit_params.py +0 -0
  172. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_revert_to_commit_response.py +0 -0
  173. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_session.py +0 -0
  174. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_session_role.py +0 -0
  175. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_session_with_messages.py +0 -0
  176. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_template.py +0 -0
  177. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_update_session_favorite_params.py +0 -0
  178. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_update_session_params.py +0 -0
  179. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_update_visibility_params.py +0 -0
  180. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/chat_visibility.py +0 -0
  181. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/code_generate_code_params.py +0 -0
  182. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/code_interrupt_generation_params.py +0 -0
  183. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector.py +0 -0
  184. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_auth_method.py +0 -0
  185. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_auth_method_with_fields.py +0 -0
  186. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/__init__.py +0 -0
  187. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/admin_batch_create_credential_fields_params.py +0 -0
  188. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/admin_batch_create_credential_fields_response.py +0 -0
  189. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/admin_batch_create_scopes_params.py +0 -0
  190. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/admin_create_auth_method_params.py +0 -0
  191. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/admin_create_catalog_params.py +0 -0
  192. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/admin_create_credential_field_params.py +0 -0
  193. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/admin_create_scope_params.py +0 -0
  194. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/admin_list_nango_pending_response.py +0 -0
  195. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/admin_list_scopes_params.py +0 -0
  196. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/admin_update_auth_method_params.py +0 -0
  197. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/admin_update_catalog_params.py +0 -0
  198. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/admin_update_credential_field_params.py +0 -0
  199. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/admin_update_scope_params.py +0 -0
  200. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/admin_upload_logo_params.py +0 -0
  201. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/batch_create_scopes_response.py +0 -0
  202. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/connector_auth_method_scope.py +0 -0
  203. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/connector_catalog.py +0 -0
  204. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/create_credential_field_request_param.py +0 -0
  205. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/create_scope_request_param.py +0 -0
  206. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/list_scopes_response.py +0 -0
  207. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/pending_nango_integration.py +0 -0
  208. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog/upload_logo_response.py +0 -0
  209. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog_list_params.py +0 -0
  210. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog_list_response.py +0 -0
  211. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_catalog_with_methods.py +0 -0
  212. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_category.py +0 -0
  213. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_create_params.py +0 -0
  214. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_create_secret_params.py +0 -0
  215. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_credential_field.py +0 -0
  216. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_delete_schema_object_params.py +0 -0
  217. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_explore_params.py +0 -0
  218. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_explorer_chat.py +0 -0
  219. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_get_clarification_requests_response.py +0 -0
  220. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_get_explorer_chat_params.py +0 -0
  221. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_get_response.py +0 -0
  222. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_list_params.py +0 -0
  223. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_list_with_snippets_params.py +0 -0
  224. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_list_with_snippets_response.py +0 -0
  225. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_search_tables_params.py +0 -0
  226. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_search_tables_response.py +0 -0
  227. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_store_response.py +0 -0
  228. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_summaries_params.py +0 -0
  229. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_summaries_response.py +0 -0
  230. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_summary.py +0 -0
  231. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_table_info.py +0 -0
  232. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_update_column_params.py +0 -0
  233. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_update_params.py +0 -0
  234. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_update_table_params.py +0 -0
  235. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_with_secrets.py +0 -0
  236. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connector_with_snippets.py +0 -0
  237. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connectors/__init__.py +0 -0
  238. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connectors/snippet.py +0 -0
  239. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/connectors/type_snippet_upsert_params.py +0 -0
  240. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/create_chat_session_response.py +0 -0
  241. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/create_match_jobs_response.py +0 -0
  242. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/create_team_response.py +0 -0
  243. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/credits_usage_response.py +0 -0
  244. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/credits_usage_timeseries_point.py +0 -0
  245. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dashboard_component.py +0 -0
  246. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dashboard_component_param.py +0 -0
  247. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dashboard_layout.py +0 -0
  248. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dashboard_layout_param.py +0 -0
  249. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_add_property_params.py +0 -0
  250. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_count_missing_embeddings_params.py +0 -0
  251. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_count_missing_embeddings_response.py +0 -0
  252. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_create_params.py +0 -0
  253. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_create_response.py +0 -0
  254. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_delete_params.py +0 -0
  255. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_descriptor.py +0 -0
  256. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_descriptor_param.py +0 -0
  257. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_enrichment_progress_params.py +0 -0
  258. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_enrichment_progress_response.py +0 -0
  259. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_export_to_csv_params.py +0 -0
  260. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_export_to_excel_params.py +0 -0
  261. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_get_params.py +0 -0
  262. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_get_response.py +0 -0
  263. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_list_response.py +0 -0
  264. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_match_params.py +0 -0
  265. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_match_response.py +0 -0
  266. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_remove_property_params.py +0 -0
  267. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_reorder_properties_params.py +0 -0
  268. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_set_primary_column_params.py +0 -0
  269. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_update_property_params.py +0 -0
  270. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_update_relationship_params.py +0 -0
  271. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_view_relationships_params.py +0 -0
  272. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_view_relationships_response.py +0 -0
  273. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_view_table_params.py +0 -0
  274. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_view_table_response.py +0 -0
  275. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_view_tables_with_relationships_params.py +0 -0
  276. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/dataset_view_tables_with_relationships_response.py +0 -0
  277. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/datasets/__init__.py +0 -0
  278. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/datasets/evaluate_delete_params.py +0 -0
  279. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/datasets/evaluate_get_params.py +0 -0
  280. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/datasets/evaluate_get_response.py +0 -0
  281. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/datasets/evaluate_list_params.py +0 -0
  282. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/datasets/evaluate_list_response.py +0 -0
  283. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/datasets/evaluate_run_params.py +0 -0
  284. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/datasets/evaluate_run_response.py +0 -0
  285. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/datasets/evaluate_status_params.py +0 -0
  286. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/datasets/evaluate_status_response.py +0 -0
  287. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/delete_chat_session_response.py +0 -0
  288. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/delete_project_response.py +0 -0
  289. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/delete_schema_object_request_param.py +0 -0
  290. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/delete_schema_object_response.py +0 -0
  291. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/delete_source_entity_response.py +0 -0
  292. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/delete_source_relationship_response.py +0 -0
  293. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/delete_team_response.py +0 -0
  294. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/document_delete_params.py +0 -0
  295. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/document_download_params.py +0 -0
  296. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/document_download_response.py +0 -0
  297. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/document_list_params.py +0 -0
  298. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/document_list_response.py +0 -0
  299. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/document_upload_params.py +0 -0
  300. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/edge_spec_param.py +0 -0
  301. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity.py +0 -0
  302. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_add_batch_params.py +0 -0
  303. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_add_batch_response.py +0 -0
  304. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_add_params.py +0 -0
  305. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_add_relationship_params.py +0 -0
  306. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_add_relationship_response.py +0 -0
  307. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_add_response.py +0 -0
  308. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_agent_merge_params.py +0 -0
  309. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_agent_merge_response.py +0 -0
  310. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_delete_params.py +0 -0
  311. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_delete_relationship_params.py +0 -0
  312. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_delete_response.py +0 -0
  313. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_derive_all_params.py +0 -0
  314. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_derive_all_response.py +0 -0
  315. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_derive_params.py +0 -0
  316. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_derive_response.py +0 -0
  317. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_get_local_subgraph_params.py +0 -0
  318. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_get_local_subgraph_response.py +0 -0
  319. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_get_merges_params.py +0 -0
  320. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_get_merges_response.py +0 -0
  321. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_get_params.py +0 -0
  322. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_get_response.py +0 -0
  323. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_get_source_entities_params.py +0 -0
  324. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_get_source_entities_response.py +0 -0
  325. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_list_jobs_params.py +0 -0
  326. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_list_jobs_response.py +0 -0
  327. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_match.py +0 -0
  328. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_merge_params.py +0 -0
  329. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_merge_response.py +0 -0
  330. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_param.py +0 -0
  331. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_search_params.py +0 -0
  332. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_search_response.py +0 -0
  333. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_summarize_params.py +0 -0
  334. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_summarize_response.py +0 -0
  335. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_trigger_merge_params.py +0 -0
  336. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_trigger_merge_response.py +0 -0
  337. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_update_property_params.py +0 -0
  338. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_update_property_response.py +0 -0
  339. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_upload_parquet_params.py +0 -0
  340. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_verify_params.py +0 -0
  341. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_view_params.py +0 -0
  342. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/entity_view_response.py +0 -0
  343. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/estimate_cost_response.py +0 -0
  344. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/exploration_phase_id.py +0 -0
  345. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/exploration_run.py +0 -0
  346. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/exploration_runs_response.py +0 -0
  347. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/exploration_status.py +0 -0
  348. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/explore_status_response.py +0 -0
  349. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/explorer_chat_response.py +0 -0
  350. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/finalize_dag_response.py +0 -0
  351. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/get_chat_session_response.py +0 -0
  352. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/get_dependencies_response.py +0 -0
  353. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/get_job_events_response.py +0 -0
  354. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/get_node_logs_response.py +0 -0
  355. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/get_node_response.py +0 -0
  356. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/get_team_response.py +0 -0
  357. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/get_workflow_schedule_sessions_response.py +0 -0
  358. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/granularity.py +0 -0
  359. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/image.py +0 -0
  360. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/invitation_details_response.py +0 -0
  361. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/job_cancel_response.py +0 -0
  362. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/job_event_body.py +0 -0
  363. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/job_get_scrapers_response.py +0 -0
  364. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/job_get_source_entities_response.py +0 -0
  365. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/job_list_params.py +0 -0
  366. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/job_status_params.py +0 -0
  367. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/job_status_response.py +0 -0
  368. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/knowledge_graph.py +0 -0
  369. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/knowledge_graph_param.py +0 -0
  370. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/list_chat_sessions_response.py +0 -0
  371. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/list_collaborators_response.py +0 -0
  372. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/list_members_response.py +0 -0
  373. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/list_projects_response.py +0 -0
  374. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/list_tables_response.py +0 -0
  375. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/list_teams_response.py +0 -0
  376. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/llm_information_store.py +0 -0
  377. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/match_create_jobs_params.py +0 -0
  378. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/match_list_results_params.py +0 -0
  379. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/match_result.py +0 -0
  380. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/merge_config.py +0 -0
  381. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/merge_config_param.py +0 -0
  382. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/message.py +0 -0
  383. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/nango_create_session_params.py +0 -0
  384. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/nango_create_session_response.py +0 -0
  385. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/nango_list_integrations_response.py +0 -0
  386. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/node_spec_param.py +0 -0
  387. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/project.py +0 -0
  388. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/project_collaborator_input_param.py +0 -0
  389. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/project_get_response.py +0 -0
  390. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/project_member.py +0 -0
  391. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/project_update_params.py +0 -0
  392. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/project_visibility.py +0 -0
  393. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/property_type.py +0 -0
  394. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/property_type_param.py +0 -0
  395. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/refresh_session_response.py +0 -0
  396. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/relationship.py +0 -0
  397. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/relationship_merge_strategy.py +0 -0
  398. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/relationship_merge_strategy_param.py +0 -0
  399. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/relationship_param.py +0 -0
  400. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/remove_member_response.py +0 -0
  401. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/sandbox.py +0 -0
  402. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/sandbox_create_params.py +0 -0
  403. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/sandbox_get_params.py +0 -0
  404. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/sandbox_list_response.py +0 -0
  405. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/sandbox_update_status_params.py +0 -0
  406. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/save_requirement.py +0 -0
  407. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/save_requirement_param.py +0 -0
  408. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/scrape_list_params.py +0 -0
  409. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/scrape_list_response.py +0 -0
  410. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/scrape_scrape_params.py +0 -0
  411. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/scrape_scrape_response.py +0 -0
  412. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/select_team_response.py +0 -0
  413. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/server_information.py +0 -0
  414. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/session_confirm_node_params.py +0 -0
  415. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/session_create_session_params.py +0 -0
  416. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/session_finalize_dag_params.py +0 -0
  417. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/session_get_events_params.py +0 -0
  418. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/session_get_events_response.py +0 -0
  419. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/session_get_node_progress_response.py +0 -0
  420. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/session_kill_jobs_params.py +0 -0
  421. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/session_kill_jobs_response.py +0 -0
  422. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/session_mark_errored_params.py +0 -0
  423. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/session_request_confirmation_params.py +0 -0
  424. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/session_update_node_params.py +0 -0
  425. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/session_update_node_progress_params.py +0 -0
  426. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/session_upload_dashboard_layout_params.py +0 -0
  427. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/session_upload_node_output_data_params.py +0 -0
  428. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/session_upload_node_visualization_output_params.py +0 -0
  429. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/slack_api_response.py +0 -0
  430. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/slack_event_payload_param.py +0 -0
  431. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/slack_events_params.py +0 -0
  432. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/source.py +0 -0
  433. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/source_delete_entity_params.py +0 -0
  434. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/source_delete_relationship_params.py +0 -0
  435. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/source_list_params.py +0 -0
  436. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/source_list_response.py +0 -0
  437. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/strategy.py +0 -0
  438. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/strategy_param.py +0 -0
  439. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/structure_enhance_property_params.py +0 -0
  440. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/structure_enhance_property_response.py +0 -0
  441. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/structure_enhance_relationship_params.py +0 -0
  442. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/structure_enhance_relationship_response.py +0 -0
  443. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/structure_find_relationship_params.py +0 -0
  444. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/structure_find_relationship_response.py +0 -0
  445. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/structure_is_complete_params.py +0 -0
  446. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/structure_is_complete_response.py +0 -0
  447. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/structure_job_status_params.py +0 -0
  448. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/structure_job_status_response.py +0 -0
  449. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/structure_run_async_response.py +0 -0
  450. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/survey_submission_response.py +0 -0
  451. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/table.py +0 -0
  452. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/table_param.py +0 -0
  453. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/team.py +0 -0
  454. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/team_accept_invitation_params.py +0 -0
  455. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/team_add_member_params.py +0 -0
  456. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/team_create_link_code_params.py +0 -0
  457. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/team_create_params.py +0 -0
  458. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/team_create_project_params.py +0 -0
  459. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/team_credits_usage_params.py +0 -0
  460. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/team_role.py +0 -0
  461. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/team_subscription_status.py +0 -0
  462. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/team_update_member_role_params.py +0 -0
  463. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/team_update_params.py +0 -0
  464. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/team_wiki_page.py +0 -0
  465. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/team_with_role.py +0 -0
  466. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/teams_link_code_response.py +0 -0
  467. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/token_response.py +0 -0
  468. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/tool_metadata.py +0 -0
  469. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/tool_result.py +0 -0
  470. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/update_member_role_response.py +0 -0
  471. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/update_table_response.py +0 -0
  472. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/update_team_response.py +0 -0
  473. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/update_visibility_response.py +0 -0
  474. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/usage_group_key.py +0 -0
  475. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user/__init__.py +0 -0
  476. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user/api_key_create_params.py +0 -0
  477. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user/api_key_info.py +0 -0
  478. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user/create_api_key_response.py +0 -0
  479. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user/create_session_response.py +0 -0
  480. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user/list_api_keys_response.py +0 -0
  481. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user/stripe_create_portal_session_params.py +0 -0
  482. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user/stripe_create_session_params.py +0 -0
  483. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user/stripe_create_subscription_params.py +0 -0
  484. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user/subscription_plan.py +0 -0
  485. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user_enrich_params.py +0 -0
  486. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user_info.py +0 -0
  487. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user_refresh_params.py +0 -0
  488. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user_survey_submit_params.py +0 -0
  489. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user_transactions_response.py +0 -0
  490. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user_update_params.py +0 -0
  491. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user_usage_params.py +0 -0
  492. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/user_usage_response.py +0 -0
  493. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/wiki_connector_reference.py +0 -0
  494. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/wiki_create_params.py +0 -0
  495. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/wiki_list_response.py +0 -0
  496. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/wiki_page_with_references.py +0 -0
  497. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/wiki_update_params.py +0 -0
  498. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/workflow_dag.py +0 -0
  499. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/workflow_node_execution_status.py +0 -0
  500. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/workflow_node_log.py +0 -0
  501. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/workflow_run_params.py +0 -0
  502. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/workflow_schedule_create_params.py +0 -0
  503. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/workflow_schedule_get_all_response.py +0 -0
  504. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/workflow_schedule_get_sessions_params.py +0 -0
  505. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/workflow_schedule_info.py +0 -0
  506. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/workflow_schedule_pause_params.py +0 -0
  507. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/workflow_schedule_update_params.py +0 -0
  508. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/workflow_session.py +0 -0
  509. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/workflow_session_edge.py +0 -0
  510. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/workflow_session_node.py +0 -0
  511. {structifyai-1.171.0 → structifyai-1.172.0}/src/structify/types/workflow_stop_params.py +0 -0
  512. {structifyai-1.171.0 → structifyai-1.172.0}/src/structifyai/lib/.keep +0 -0
  513. {structifyai-1.171.0 → structifyai-1.172.0}/tests/__init__.py +0 -0
  514. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/__init__.py +0 -0
  515. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/admin/__init__.py +0 -0
  516. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/admin/test_chat_templates.py +0 -0
  517. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/admin/test_dataset.py +0 -0
  518. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/admin/test_functional_tests.py +0 -0
  519. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/admin/test_jobs.py +0 -0
  520. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/admin/test_sandbox.py +0 -0
  521. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/admin/test_teams.py +0 -0
  522. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/admin/test_users.py +0 -0
  523. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/connector_catalog/__init__.py +0 -0
  524. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/connector_catalog/test_admin.py +0 -0
  525. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/connectors/__init__.py +0 -0
  526. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/connectors/test_type_snippets.py +0 -0
  527. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/datasets/__init__.py +0 -0
  528. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/datasets/test_evaluate.py +0 -0
  529. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_code.py +0 -0
  530. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_connector_catalog.py +0 -0
  531. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_connectors.py +0 -0
  532. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_dataframe.py +0 -0
  533. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_datasets.py +0 -0
  534. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_documents.py +0 -0
  535. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_entities.py +0 -0
  536. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_jobs.py +0 -0
  537. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_match.py +0 -0
  538. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_nango.py +0 -0
  539. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_projects.py +0 -0
  540. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_public_sessions.py +0 -0
  541. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_sandbox.py +0 -0
  542. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_scrape.py +0 -0
  543. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_server.py +0 -0
  544. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_sessions.py +0 -0
  545. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_slack.py +0 -0
  546. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_sources.py +0 -0
  547. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_teams.py +0 -0
  548. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_user.py +0 -0
  549. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_whitelabel.py +0 -0
  550. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_wiki.py +0 -0
  551. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_workflow.py +0 -0
  552. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/test_workflow_schedule.py +0 -0
  553. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/user/__init__.py +0 -0
  554. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/user/test_api_keys.py +0 -0
  555. {structifyai-1.171.0 → structifyai-1.172.0}/tests/api_resources/user/test_stripe.py +0 -0
  556. {structifyai-1.171.0 → structifyai-1.172.0}/tests/conftest.py +0 -0
  557. {structifyai-1.171.0 → structifyai-1.172.0}/tests/sample_file.txt +0 -0
  558. {structifyai-1.171.0 → structifyai-1.172.0}/tests/test_client.py +0 -0
  559. {structifyai-1.171.0 → structifyai-1.172.0}/tests/test_deepcopy.py +0 -0
  560. {structifyai-1.171.0 → structifyai-1.172.0}/tests/test_extract_files.py +0 -0
  561. {structifyai-1.171.0 → structifyai-1.172.0}/tests/test_files.py +0 -0
  562. {structifyai-1.171.0 → structifyai-1.172.0}/tests/test_models.py +0 -0
  563. {structifyai-1.171.0 → structifyai-1.172.0}/tests/test_qs.py +0 -0
  564. {structifyai-1.171.0 → structifyai-1.172.0}/tests/test_required_args.py +0 -0
  565. {structifyai-1.171.0 → structifyai-1.172.0}/tests/test_response.py +0 -0
  566. {structifyai-1.171.0 → structifyai-1.172.0}/tests/test_streaming.py +0 -0
  567. {structifyai-1.171.0 → structifyai-1.172.0}/tests/test_transform.py +0 -0
  568. {structifyai-1.171.0 → structifyai-1.172.0}/tests/test_utils/test_datetime_parse.py +0 -0
  569. {structifyai-1.171.0 → structifyai-1.172.0}/tests/test_utils/test_proxy.py +0 -0
  570. {structifyai-1.171.0 → structifyai-1.172.0}/tests/test_utils/test_typing.py +0 -0
  571. {structifyai-1.171.0 → structifyai-1.172.0}/tests/utils.py +0 -0
  572. {structifyai-1.171.0 → structifyai-1.172.0}/uv.lock +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "1.172.0"
3
+ }
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.172.0 (2026-01-15)
4
+
5
+ Full Changelog: [v1.171.0...v1.172.0](https://github.com/StructifyAI/structify-python/compare/v1.171.0...v1.172.0)
6
+
7
+ ### Features
8
+
9
+ * Update from Structify backend changes ([0407a08](https://github.com/StructifyAI/structify-python/commit/0407a08383218be1a7cc4e754407208d48ad2b2c))
10
+ * Update from Structify backend changes ([8e954f9](https://github.com/StructifyAI/structify-python/commit/8e954f9ce7d6e3137c36fdda7b3554388a9b5362))
11
+
3
12
  ## 1.171.0 (2026-01-14)
4
13
 
5
14
  Full Changelog: [v1.170.1...v1.171.0](https://github.com/StructifyAI/structify-python/compare/v1.170.1...v1.171.0)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: structifyai
3
- Version: 1.171.0
3
+ Version: 1.172.0
4
4
  Summary: The official Python library for the structify API
5
5
  Project-URL: Homepage, https://github.com/StructifyAI/structify-python
6
6
  Project-URL: Repository, https://github.com/StructifyAI/structify-python
@@ -89,6 +89,8 @@ Types:
89
89
  from structify.types import (
90
90
  AddCollaboratorRequest,
91
91
  AdminGrantAccessResponse,
92
+ AdminIssueFoundRequest,
93
+ AdminIssueFoundResponse,
92
94
  ChatDependency,
93
95
  ChatEvent,
94
96
  ChatSession,
@@ -131,6 +133,7 @@ Methods:
131
133
  - <code title="post /chat/sessions/{chat_id}/collaborators">client.chat.<a href="./src/structify/resources/chat.py">add_collaborator</a>(chat_id, \*\*<a href="src/structify/types/chat_add_collaborator_params.py">params</a>) -> None</code>
132
134
  - <code title="post /chat/sessions/{session_id}/commits">client.chat.<a href="./src/structify/resources/chat.py">add_git_commit</a>(session_id, \*\*<a href="src/structify/types/chat_add_git_commit_params.py">params</a>) -> <a href="./src/structify/types/chat_add_git_commit_response.py">ChatAddGitCommitResponse</a></code>
133
135
  - <code title="get /chat/sessions/{session_id}/admin/chat_prompt">client.chat.<a href="./src/structify/resources/chat.py">admin_get_chat_prompt</a>(session_id) -> <a href="./src/structify/types/chat_prompt.py">ChatPrompt</a></code>
136
+ - <code title="post /chat/sessions/{chat_id}/admin/issue_found">client.chat.<a href="./src/structify/resources/chat.py">admin_issue_found</a>(chat_id, \*\*<a href="src/structify/types/chat_admin_issue_found_params.py">params</a>) -> <a href="./src/structify/types/admin_issue_found_response.py">AdminIssueFoundResponse</a></code>
134
137
  - <code title="post /chat/copy">client.chat.<a href="./src/structify/resources/chat.py">copy</a>(\*\*<a href="src/structify/types/chat_copy_params.py">params</a>) -> <a href="./src/structify/types/chat_session_with_messages.py">ChatSessionWithMessages</a></code>
135
138
  - <code title="post /chat/sessions/{session_id}/nodes/by_code_hash">client.chat.<a href="./src/structify/resources/chat.py">copy_node_output_by_code_hash</a>(session_id, \*\*<a href="src/structify/types/chat_copy_node_output_by_code_hash_params.py">params</a>) -> str</code>
136
139
  - <code title="post /chat/sessions">client.chat.<a href="./src/structify/resources/chat.py">create_session</a>(\*\*<a href="src/structify/types/chat_create_session_params.py">params</a>) -> <a href="./src/structify/types/create_chat_session_response.py">CreateChatSessionResponse</a></code>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "structifyai"
3
- version = "1.171.0"
3
+ version = "1.172.0"
4
4
  description = "The official Python library for the structify API"
5
5
  dynamic = ["readme"]
6
6
  license = "Apache-2.0"
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "structify"
4
- __version__ = "1.171.0" # x-release-please-version
4
+ __version__ = "1.172.0" # x-release-please-version
@@ -18,6 +18,7 @@ from ..types import (
18
18
  chat_update_session_params,
19
19
  chat_add_collaborator_params,
20
20
  chat_revert_to_commit_params,
21
+ chat_admin_issue_found_params,
21
22
  chat_update_visibility_params,
22
23
  chat_grant_admin_override_params,
23
24
  chat_update_session_favorite_params,
@@ -41,6 +42,7 @@ from ..types.chat_session_role import ChatSessionRole
41
42
  from ..types.chat_load_files_response import ChatLoadFilesResponse
42
43
  from ..types.get_chat_session_response import GetChatSessionResponse
43
44
  from ..types.get_dependencies_response import GetDependenciesResponse
45
+ from ..types.admin_issue_found_response import AdminIssueFoundResponse
44
46
  from ..types.chat_delete_files_response import ChatDeleteFilesResponse
45
47
  from ..types.chat_session_with_messages import ChatSessionWithMessages
46
48
  from ..types.update_visibility_response import UpdateVisibilityResponse
@@ -191,6 +193,48 @@ class ChatResource(SyncAPIResource):
191
193
  cast_to=ChatPrompt,
192
194
  )
193
195
 
196
+ def admin_issue_found(
197
+ self,
198
+ chat_id: str,
199
+ *,
200
+ message: str,
201
+ title: str,
202
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
203
+ # The extra values given here take precedence over values defined on the client or passed to this method.
204
+ extra_headers: Headers | None = None,
205
+ extra_query: Query | None = None,
206
+ extra_body: Body | None = None,
207
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
208
+ ) -> AdminIssueFoundResponse:
209
+ """
210
+ Add an IssueFound tool call as an admin-only auto-review message
211
+
212
+ Args:
213
+ extra_headers: Send extra headers
214
+
215
+ extra_query: Add additional query parameters to the request
216
+
217
+ extra_body: Add additional JSON properties to the request
218
+
219
+ timeout: Override the client-level default timeout for this request, in seconds
220
+ """
221
+ if not chat_id:
222
+ raise ValueError(f"Expected a non-empty value for `chat_id` but received {chat_id!r}")
223
+ return self._post(
224
+ f"/chat/sessions/{chat_id}/admin/issue_found",
225
+ body=maybe_transform(
226
+ {
227
+ "message": message,
228
+ "title": title,
229
+ },
230
+ chat_admin_issue_found_params.ChatAdminIssueFoundParams,
231
+ ),
232
+ options=make_request_options(
233
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
234
+ ),
235
+ cast_to=AdminIssueFoundResponse,
236
+ )
237
+
194
238
  def copy(
195
239
  self,
196
240
  *,
@@ -1098,6 +1142,48 @@ class AsyncChatResource(AsyncAPIResource):
1098
1142
  cast_to=ChatPrompt,
1099
1143
  )
1100
1144
 
1145
+ async def admin_issue_found(
1146
+ self,
1147
+ chat_id: str,
1148
+ *,
1149
+ message: str,
1150
+ title: str,
1151
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1152
+ # The extra values given here take precedence over values defined on the client or passed to this method.
1153
+ extra_headers: Headers | None = None,
1154
+ extra_query: Query | None = None,
1155
+ extra_body: Body | None = None,
1156
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
1157
+ ) -> AdminIssueFoundResponse:
1158
+ """
1159
+ Add an IssueFound tool call as an admin-only auto-review message
1160
+
1161
+ Args:
1162
+ extra_headers: Send extra headers
1163
+
1164
+ extra_query: Add additional query parameters to the request
1165
+
1166
+ extra_body: Add additional JSON properties to the request
1167
+
1168
+ timeout: Override the client-level default timeout for this request, in seconds
1169
+ """
1170
+ if not chat_id:
1171
+ raise ValueError(f"Expected a non-empty value for `chat_id` but received {chat_id!r}")
1172
+ return await self._post(
1173
+ f"/chat/sessions/{chat_id}/admin/issue_found",
1174
+ body=await async_maybe_transform(
1175
+ {
1176
+ "message": message,
1177
+ "title": title,
1178
+ },
1179
+ chat_admin_issue_found_params.ChatAdminIssueFoundParams,
1180
+ ),
1181
+ options=make_request_options(
1182
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
1183
+ ),
1184
+ cast_to=AdminIssueFoundResponse,
1185
+ )
1186
+
1101
1187
  async def copy(
1102
1188
  self,
1103
1189
  *,
@@ -1888,6 +1974,9 @@ class ChatResourceWithRawResponse:
1888
1974
  self.admin_get_chat_prompt = to_raw_response_wrapper(
1889
1975
  chat.admin_get_chat_prompt,
1890
1976
  )
1977
+ self.admin_issue_found = to_raw_response_wrapper(
1978
+ chat.admin_issue_found,
1979
+ )
1891
1980
  self.copy = to_raw_response_wrapper(
1892
1981
  chat.copy,
1893
1982
  )
@@ -1966,6 +2055,9 @@ class AsyncChatResourceWithRawResponse:
1966
2055
  self.admin_get_chat_prompt = async_to_raw_response_wrapper(
1967
2056
  chat.admin_get_chat_prompt,
1968
2057
  )
2058
+ self.admin_issue_found = async_to_raw_response_wrapper(
2059
+ chat.admin_issue_found,
2060
+ )
1969
2061
  self.copy = async_to_raw_response_wrapper(
1970
2062
  chat.copy,
1971
2063
  )
@@ -2044,6 +2136,9 @@ class ChatResourceWithStreamingResponse:
2044
2136
  self.admin_get_chat_prompt = to_streamed_response_wrapper(
2045
2137
  chat.admin_get_chat_prompt,
2046
2138
  )
2139
+ self.admin_issue_found = to_streamed_response_wrapper(
2140
+ chat.admin_issue_found,
2141
+ )
2047
2142
  self.copy = to_streamed_response_wrapper(
2048
2143
  chat.copy,
2049
2144
  )
@@ -2122,6 +2217,9 @@ class AsyncChatResourceWithStreamingResponse:
2122
2217
  self.admin_get_chat_prompt = async_to_streamed_response_wrapper(
2123
2218
  chat.admin_get_chat_prompt,
2124
2219
  )
2220
+ self.admin_issue_found = async_to_streamed_response_wrapper(
2221
+ chat.admin_issue_found,
2222
+ )
2125
2223
  self.copy = async_to_streamed_response_wrapper(
2126
2224
  chat.copy,
2127
2225
  )
@@ -5,7 +5,7 @@ import io
5
5
  import os
6
6
  import time
7
7
  import uuid
8
- from typing import Any, Dict, List, Tuple, Optional, cast
8
+ from typing import Any, Dict, List, Tuple, Literal, Optional, cast
9
9
  from concurrent.futures import Future, ThreadPoolExecutor, as_completed
10
10
 
11
11
  import polars as pl
@@ -811,7 +811,10 @@ class PolarsResource(SyncAPIResource):
811
811
  path_column: str,
812
812
  table_name: str,
813
813
  schema: Dict[str, Dict[str, Any]],
814
- conditioning: str = "",
814
+ conditioning: str = "", # Kept for backward compatibility
815
+ instructions: str | LazyFrame | None = None,
816
+ model: str | None = None,
817
+ mode: Literal["single", "all_pages"] = "all_pages",
815
818
  ) -> LazyFrame:
816
819
  """
817
820
  Extract structured data from PDF documents and return as a LazyFrame.
@@ -821,6 +824,10 @@ class PolarsResource(SyncAPIResource):
821
824
  path_column: Name of the column containing PDF file paths
822
825
  table_name: Name of the table for the structured data
823
826
  schema: Schema definition with descriptions, format: {"column_name": {"description": "...", "type": polars_dtype}}
827
+ instructions: Optional instructions for the extraction. Can be a string (applied to all PDFs)
828
+ or a LazyFrame with the same rows as document_paths containing per-PDF instructions.
829
+ model: Optional model name to use for extraction
830
+ mode: Whether to dispatch a single high-agency agent or one low-agency agent per page.
824
831
 
825
832
  Returns:
826
833
  LazyFrame: Structured data extracted from the PDFs
@@ -842,25 +849,50 @@ class PolarsResource(SyncAPIResource):
842
849
 
843
850
  node_id = get_node_id()
844
851
 
852
+ # Validate model format if provided as string
853
+ if isinstance(model, str):
854
+ parts = model.split(".", 1)
855
+ if len(parts) != 2:
856
+ raise ValueError(
857
+ "model must be in format 'provider.model_name' (e.g. 'bedrock.claude-sonnet-4-bedrock')"
858
+ )
859
+
860
+ # Build lookups for per-row instructions by index (not by path, since the same PDF may appear multiple times)
861
+ paths_df = document_paths.collect()
862
+
863
+ instructions_list: list[str | None] = []
864
+
865
+ if instructions is not None and not isinstance(instructions, str):
866
+ instr_df = instructions.collect()
867
+ if instr_df.shape[0] != paths_df.shape[0]:
868
+ raise ValueError(f"instructions shape {instr_df.shape} != document_paths shape {paths_df.shape}")
869
+ instructions_list = cast(List[Optional[str]], instr_df[instr_df.columns[0]].to_list())
870
+
845
871
  def structure_batch(batch_df: pl.DataFrame) -> pl.DataFrame:
846
- # Get unique PDF paths in the batch
847
- batch_paths = batch_df.select(path_column).drop_nulls(subset=[path_column]).unique().to_series().to_list()
872
+ # Track by row index since the same PDF may appear multiple times with different instructions
873
+ batch_rows = batch_df.with_row_index("__row_idx__").to_dicts()
874
+ valid_rows = [row for row in batch_rows if row.get(path_column) is not None]
875
+
876
+ if not valid_rows:
877
+ return pl.DataFrame(schema=polars_schema)
848
878
 
849
879
  # Request cost confirmation before dispatching costly PDF extraction jobs
850
- if not request_cost_confirmation_if_needed(self._client, len(batch_paths)):
880
+ if not request_cost_confirmation_if_needed(self._client, len(valid_rows)):
851
881
  raise Exception(f"User cancelled PDF extraction for {table_name}")
852
882
 
853
883
  # Process each PDF document
854
- path_to_dataset: dict[str, str] = {}
855
884
  job_ids: list[str] = []
885
+ idx_to_dataset: dict[int, str] = {}
856
886
 
857
- def process_pdf(pdf_path: str) -> Tuple[str, str, str]:
887
+ def process_pdf(row: dict[str, Any]) -> Tuple[str, int, str]:
888
+ row_idx = row["__row_idx__"]
889
+ pdf_path = row[path_column]
858
890
  dataset_name = f"structure_pdfs_{table_name}_{uuid.uuid4().hex}"
859
891
 
860
892
  # Create dataset for this PDF
861
893
  self._client.datasets.create(
862
894
  name=dataset_name,
863
- description=conditioning,
895
+ description="",
864
896
  tables=[table_param],
865
897
  relationships=[],
866
898
  ephemeral=True,
@@ -875,19 +907,30 @@ class PolarsResource(SyncAPIResource):
875
907
  path=f"{dataset_name}.pdf".encode(),
876
908
  )
877
909
 
910
+ # Get per-row instructions and model
911
+ pdf_instructions: str | None = None
912
+ if isinstance(instructions, str):
913
+ pdf_instructions = instructions
914
+ elif instructions_list:
915
+ pdf_instructions = cast(Optional[str], instructions_list[row_idx])
916
+ elif conditioning:
917
+ pdf_instructions = conditioning
918
+
878
919
  job_id = self._client.structure.run_async(
879
920
  dataset=dataset_name,
880
- source=SourcePdf(pdf={"path": f"{dataset_name}.pdf"}),
921
+ source=SourcePdf(pdf={"path": f"{dataset_name}.pdf", "single_agent": mode == "single"}),
881
922
  node_id=node_id,
923
+ instructions=pdf_instructions,
924
+ model=model,
882
925
  )
883
- return job_id, str(pdf_path), dataset_name
926
+ return job_id, row_idx, dataset_name
884
927
 
885
928
  with ThreadPoolExecutor(max_workers=MAX_PARALLEL_REQUESTS) as executor:
886
- futures = [executor.submit(process_pdf, pdf_path) for pdf_path in batch_paths]
929
+ futures = [executor.submit(process_pdf, row) for row in valid_rows]
887
930
  for future in tqdm(as_completed(futures), total=len(futures), desc="Preparing PDFs"):
888
- job_id, pdf_path, dataset_name = future.result()
931
+ job_id, row_idx, dataset_name = future.result()
889
932
  job_ids.append(job_id)
890
- path_to_dataset[pdf_path] = dataset_name
933
+ idx_to_dataset[row_idx] = dataset_name
891
934
 
892
935
  # Wait for all PDF processing jobs to complete
893
936
  self._client.jobs.wait_for_jobs(job_ids=job_ids, title=f"Parsing {table_name} from PDFs", node_id=node_id)
@@ -895,16 +938,17 @@ class PolarsResource(SyncAPIResource):
895
938
  # Collect results from all processed PDFs
896
939
  structured_results: list[dict[str, Any]] = []
897
940
 
898
- def collect_pdf_results(pdf_path: str, dataset_name: str) -> List[Dict[str, Any]]:
941
+ def collect_pdf_results(row_idx: int, dataset_name: str) -> List[Dict[str, Any]]:
942
+ pdf_path = batch_rows[row_idx][path_column]
899
943
  entities_result = self._client.datasets.view_table(dataset=dataset_name, name=table_name)
900
944
  return [{**entity.properties, path_column: pdf_path} for entity in entities_result]
901
945
 
902
946
  with ThreadPoolExecutor(max_workers=MAX_PARALLEL_REQUESTS) as executor:
903
- futures = [
904
- executor.submit(collect_pdf_results, pdf_path, dataset_name) # type: ignore
905
- for pdf_path, dataset_name in path_to_dataset.items()
947
+ collect_futures = [
948
+ executor.submit(collect_pdf_results, row_idx, dataset_name)
949
+ for row_idx, dataset_name in idx_to_dataset.items()
906
950
  ]
907
- for future in tqdm(as_completed(futures), total=len(futures), desc="Collecting PDF extractions"):
951
+ for future in tqdm(as_completed(collect_futures), total=len(collect_futures), desc="Collecting PDF extractions"):
908
952
  results = future.result()
909
953
  structured_results.extend(results)
910
954
 
@@ -194,6 +194,7 @@ from .team_credits_usage_params import TeamCreditsUsageParams as TeamCreditsUsag
194
194
  from .user_survey_submit_params import UserSurveySubmitParams as UserSurveySubmitParams
195
195
  from .wiki_page_with_references import WikiPageWithReferences as WikiPageWithReferences
196
196
  from .accept_invitation_response import AcceptInvitationResponse as AcceptInvitationResponse
197
+ from .admin_issue_found_response import AdminIssueFoundResponse as AdminIssueFoundResponse
197
198
  from .chat_add_git_commit_params import ChatAddGitCommitParams as ChatAddGitCommitParams
198
199
  from .chat_create_session_params import ChatCreateSessionParams as ChatCreateSessionParams
199
200
  from .chat_delete_files_response import ChatDeleteFilesResponse as ChatDeleteFilesResponse
@@ -243,6 +244,7 @@ from .sandbox_update_status_params import SandboxUpdateStatusParams as SandboxUp
243
244
  from .structure_is_complete_params import StructureIsCompleteParams as StructureIsCompleteParams
244
245
  from .structure_run_async_response import StructureRunAsyncResponse as StructureRunAsyncResponse
245
246
  from .team_create_link_code_params import TeamCreateLinkCodeParams as TeamCreateLinkCodeParams
247
+ from .chat_admin_issue_found_params import ChatAdminIssueFoundParams as ChatAdminIssueFoundParams
246
248
  from .chat_update_visibility_params import ChatUpdateVisibilityParams as ChatUpdateVisibilityParams
247
249
  from .connector_catalog_list_params import ConnectorCatalogListParams as ConnectorCatalogListParams
248
250
  from .connector_update_table_params import ConnectorUpdateTableParams as ConnectorUpdateTableParams
@@ -35,6 +35,8 @@ class ParametersStructuringInputAgentAgentPdfPdf(BaseModel):
35
35
 
36
36
  path: str
37
37
 
38
+ single_agent: Optional[bool] = None
39
+
38
40
 
39
41
  class ParametersStructuringInputAgentAgentPdf(BaseModel):
40
42
  pdf: ParametersStructuringInputAgentAgentPdfPdf = FieldInfo(alias="PDF")
@@ -0,0 +1,9 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from .._models import BaseModel
4
+
5
+ __all__ = ["AdminIssueFoundResponse"]
6
+
7
+
8
+ class AdminIssueFoundResponse(BaseModel):
9
+ message_id: str
@@ -0,0 +1,13 @@
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, TypedDict
6
+
7
+ __all__ = ["ChatAdminIssueFoundParams"]
8
+
9
+
10
+ class ChatAdminIssueFoundParams(TypedDict, total=False):
11
+ message: Required[str]
12
+
13
+ title: Required[str]
@@ -36,6 +36,8 @@ class ParametersStructuringInputAgentAgentPdfPdf(BaseModel):
36
36
 
37
37
  path: str
38
38
 
39
+ single_agent: Optional[bool] = None
40
+
39
41
 
40
42
  class ParametersStructuringInputAgentAgentPdf(BaseModel):
41
43
  pdf: ParametersStructuringInputAgentAgentPdfPdf = FieldInfo(alias="PDF")
@@ -40,6 +40,8 @@ class SourcePdfPdf(TypedDict, total=False):
40
40
 
41
41
  path: Required[str]
42
42
 
43
+ single_agent: bool
44
+
43
45
 
44
46
  class SourcePdf(TypedDict, total=False):
45
47
  pdf: Required[Annotated[SourcePdfPdf, PropertyInfo(alias="PDF")]]
@@ -152,6 +152,8 @@ class RunPython(BaseModel):
152
152
 
153
153
 
154
154
  class IssueFoundInput(BaseModel):
155
+ admin_override: bool
156
+
155
157
  description: str
156
158
 
157
159
  title: str
@@ -14,6 +14,7 @@ from structify.types import (
14
14
  ChatSession,
15
15
  ChatLoadFilesResponse,
16
16
  GetChatSessionResponse,
17
+ AdminIssueFoundResponse,
17
18
  ChatDeleteFilesResponse,
18
19
  ChatSessionWithMessages,
19
20
  GetDependenciesResponse,
@@ -163,6 +164,52 @@ class TestChat:
163
164
  "",
164
165
  )
165
166
 
167
+ @parametrize
168
+ def test_method_admin_issue_found(self, client: Structify) -> None:
169
+ chat = client.chat.admin_issue_found(
170
+ chat_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
171
+ message="message",
172
+ title="title",
173
+ )
174
+ assert_matches_type(AdminIssueFoundResponse, chat, path=["response"])
175
+
176
+ @parametrize
177
+ def test_raw_response_admin_issue_found(self, client: Structify) -> None:
178
+ response = client.chat.with_raw_response.admin_issue_found(
179
+ chat_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
180
+ message="message",
181
+ title="title",
182
+ )
183
+
184
+ assert response.is_closed is True
185
+ assert response.http_request.headers.get("X-Stainless-Lang") == "python"
186
+ chat = response.parse()
187
+ assert_matches_type(AdminIssueFoundResponse, chat, path=["response"])
188
+
189
+ @parametrize
190
+ def test_streaming_response_admin_issue_found(self, client: Structify) -> None:
191
+ with client.chat.with_streaming_response.admin_issue_found(
192
+ chat_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
193
+ message="message",
194
+ title="title",
195
+ ) as response:
196
+ assert not response.is_closed
197
+ assert response.http_request.headers.get("X-Stainless-Lang") == "python"
198
+
199
+ chat = response.parse()
200
+ assert_matches_type(AdminIssueFoundResponse, chat, path=["response"])
201
+
202
+ assert cast(Any, response.is_closed) is True
203
+
204
+ @parametrize
205
+ def test_path_params_admin_issue_found(self, client: Structify) -> None:
206
+ with pytest.raises(ValueError, match=r"Expected a non-empty value for `chat_id` but received ''"):
207
+ client.chat.with_raw_response.admin_issue_found(
208
+ chat_id="",
209
+ message="message",
210
+ title="title",
211
+ )
212
+
166
213
  @parametrize
167
214
  def test_method_copy(self, client: Structify) -> None:
168
215
  chat = client.chat.copy(
@@ -1164,6 +1211,52 @@ class TestAsyncChat:
1164
1211
  "",
1165
1212
  )
1166
1213
 
1214
+ @parametrize
1215
+ async def test_method_admin_issue_found(self, async_client: AsyncStructify) -> None:
1216
+ chat = await async_client.chat.admin_issue_found(
1217
+ chat_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
1218
+ message="message",
1219
+ title="title",
1220
+ )
1221
+ assert_matches_type(AdminIssueFoundResponse, chat, path=["response"])
1222
+
1223
+ @parametrize
1224
+ async def test_raw_response_admin_issue_found(self, async_client: AsyncStructify) -> None:
1225
+ response = await async_client.chat.with_raw_response.admin_issue_found(
1226
+ chat_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
1227
+ message="message",
1228
+ title="title",
1229
+ )
1230
+
1231
+ assert response.is_closed is True
1232
+ assert response.http_request.headers.get("X-Stainless-Lang") == "python"
1233
+ chat = await response.parse()
1234
+ assert_matches_type(AdminIssueFoundResponse, chat, path=["response"])
1235
+
1236
+ @parametrize
1237
+ async def test_streaming_response_admin_issue_found(self, async_client: AsyncStructify) -> None:
1238
+ async with async_client.chat.with_streaming_response.admin_issue_found(
1239
+ chat_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
1240
+ message="message",
1241
+ title="title",
1242
+ ) as response:
1243
+ assert not response.is_closed
1244
+ assert response.http_request.headers.get("X-Stainless-Lang") == "python"
1245
+
1246
+ chat = await response.parse()
1247
+ assert_matches_type(AdminIssueFoundResponse, chat, path=["response"])
1248
+
1249
+ assert cast(Any, response.is_closed) is True
1250
+
1251
+ @parametrize
1252
+ async def test_path_params_admin_issue_found(self, async_client: AsyncStructify) -> None:
1253
+ with pytest.raises(ValueError, match=r"Expected a non-empty value for `chat_id` but received ''"):
1254
+ await async_client.chat.with_raw_response.admin_issue_found(
1255
+ chat_id="",
1256
+ message="message",
1257
+ title="title",
1258
+ )
1259
+
1167
1260
  @parametrize
1168
1261
  async def test_method_copy(self, async_client: AsyncStructify) -> None:
1169
1262
  chat = await async_client.chat.copy(
@@ -247,7 +247,12 @@ class TestStructure:
247
247
  def test_method_run_async_with_all_params(self, client: Structify) -> None:
248
248
  structure = client.structure.run_async(
249
249
  dataset="dataset",
250
- source={"pdf": {"path": "path"}},
250
+ source={
251
+ "pdf": {
252
+ "path": "path",
253
+ "single_agent": True,
254
+ }
255
+ },
251
256
  instructions="instructions",
252
257
  model="model",
253
258
  node_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
@@ -532,7 +537,12 @@ class TestAsyncStructure:
532
537
  async def test_method_run_async_with_all_params(self, async_client: AsyncStructify) -> None:
533
538
  structure = await async_client.structure.run_async(
534
539
  dataset="dataset",
535
- source={"pdf": {"path": "path"}},
540
+ source={
541
+ "pdf": {
542
+ "path": "path",
543
+ "single_agent": True,
544
+ }
545
+ },
536
546
  instructions="instructions",
537
547
  model="model",
538
548
  node_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
@@ -1,3 +0,0 @@
1
- {
2
- ".": "1.171.0"
3
- }
File without changes
File without changes
File without changes
File without changes
File without changes