robosystems-client 0.1.16__tar.gz → 0.1.18__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 (366) hide show
  1. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/.github/workflows/create-pr.yml +1 -2
  2. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/.github/workflows/create-release.yml +23 -3
  3. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/.github/workflows/tag-release.yml +30 -6
  4. robosystems_client-0.1.18/LICENSE +21 -0
  5. robosystems_client-0.1.18/PKG-INFO +89 -0
  6. robosystems_client-0.1.18/README.md +39 -0
  7. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/bin/create-feature +7 -17
  8. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/pyproject.toml +2 -2
  9. robosystems_client-0.1.18/robosystems_client/__init__.py +25 -0
  10. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/agent/auto_select_agent.py +24 -17
  11. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/agent/batch_process_queries.py +24 -17
  12. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/agent/execute_specific_agent.py +24 -17
  13. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/agent/get_agent_metadata.py +24 -17
  14. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/agent/list_agents.py +20 -18
  15. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/agent/recommend_agent.py +24 -17
  16. robosystems_client-0.1.18/robosystems_client/api/auth/forgot_password.py +191 -0
  17. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/auth/generate_sso_token.py +18 -0
  18. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/auth/get_current_auth_user.py +4 -22
  19. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/auth/logout_user.py +17 -17
  20. robosystems_client-0.1.16/robosystems_client/api/auth/refresh_session.py → robosystems_client-0.1.18/robosystems_client/api/auth/refresh_auth_session.py +21 -21
  21. robosystems_client-0.1.18/robosystems_client/api/auth/resend_verification_email.py +222 -0
  22. robosystems_client-0.1.18/robosystems_client/api/auth/reset_password.py +177 -0
  23. robosystems_client-0.1.18/robosystems_client/api/auth/validate_reset_token.py +171 -0
  24. robosystems_client-0.1.18/robosystems_client/api/auth/verify_email.py +177 -0
  25. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/backup/create_backup.py +24 -17
  26. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/backup/export_backup.py +24 -17
  27. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/backup/get_backup_download_url.py +20 -18
  28. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/backup/get_backup_stats.py +24 -17
  29. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/backup/list_backups.py +20 -18
  30. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/backup/restore_backup.py +24 -17
  31. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/connections/create_connection.py +24 -17
  32. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/connections/create_link_token.py +24 -17
  33. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/connections/delete_connection.py +24 -17
  34. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/connections/exchange_link_token.py +24 -17
  35. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/connections/get_connection.py +24 -17
  36. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/connections/get_connection_options.py +24 -17
  37. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/connections/init_o_auth.py +24 -17
  38. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/connections/list_connections.py +20 -18
  39. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/connections/oauth_callback.py +28 -21
  40. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/connections/sync_connection.py +24 -17
  41. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/copy/copy_data_to_graph.py +24 -17
  42. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/create/create_graph.py +24 -17
  43. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_analytics/get_graph_metrics.py +24 -17
  44. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_analytics/get_graph_usage_stats.py +20 -18
  45. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_billing/get_current_graph_bill.py +24 -17
  46. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_billing/get_graph_billing_history.py +20 -18
  47. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_billing/get_graph_monthly_bill.py +24 -17
  48. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_billing/get_graph_usage_details.py +20 -18
  49. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_credits/check_credit_balance.py +20 -18
  50. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_credits/check_storage_limits.py +24 -17
  51. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_credits/get_credit_summary.py +24 -17
  52. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_credits/get_storage_usage.py +20 -18
  53. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_credits/list_credit_transactions.py +20 -18
  54. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_health/get_database_health.py +24 -17
  55. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_info/get_database_info.py +24 -17
  56. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_limits/get_graph_limits.py +24 -17
  57. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/mcp/call_mcp_tool.py +20 -18
  58. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/mcp/list_mcp_tools.py +24 -17
  59. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/operations/cancel_operation.py +24 -17
  60. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/operations/get_operation_status.py +24 -17
  61. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/operations/stream_operation_events.py +20 -18
  62. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/query/execute_cypher_query.py +20 -18
  63. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/schema/export_graph_schema.py +20 -18
  64. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/schema/get_graph_schema_info.py +24 -17
  65. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/schema/list_schema_extensions.py +24 -17
  66. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/schema/validate_schema.py +24 -17
  67. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/subgraphs/create_subgraph.py +24 -17
  68. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/subgraphs/delete_subgraph.py +24 -17
  69. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/subgraphs/get_subgraph_info.py +24 -17
  70. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/subgraphs/get_subgraph_quota.py +24 -17
  71. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/subgraphs/list_subgraphs.py +24 -17
  72. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user/create_user_api_key.py +24 -17
  73. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user/get_all_credit_summaries.py +24 -17
  74. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user/get_current_user.py +24 -17
  75. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user/get_user_graphs.py +24 -17
  76. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user/list_user_api_keys.py +24 -17
  77. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user/revoke_user_api_key.py +24 -17
  78. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user/select_user_graph.py +24 -17
  79. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user/update_user.py +24 -17
  80. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user/update_user_api_key.py +24 -17
  81. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user/update_user_password.py +24 -17
  82. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user_analytics/get_detailed_user_analytics.py +20 -18
  83. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user_analytics/get_user_usage_overview.py +24 -17
  84. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user_limits/get_all_shared_repository_limits.py +24 -17
  85. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user_limits/get_shared_repository_limits.py +24 -17
  86. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user_limits/get_user_limits.py +24 -17
  87. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user_limits/get_user_usage.py +24 -17
  88. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py +24 -17
  89. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user_subscriptions/get_repository_credits.py +24 -17
  90. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user_subscriptions/get_shared_repository_credits.py +24 -17
  91. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py +20 -18
  92. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py +24 -17
  93. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py +24 -17
  94. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/extensions/__init__.py +70 -0
  95. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/extensions/auth_integration.py +14 -1
  96. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/extensions/copy_client.py +32 -22
  97. robosystems_client-0.1.18/robosystems_client/extensions/dataframe_utils.py +455 -0
  98. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/extensions/extensions.py +16 -0
  99. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/extensions/operation_client.py +43 -21
  100. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/extensions/query_client.py +109 -12
  101. robosystems_client-0.1.18/robosystems_client/extensions/tests/test_dataframe_utils.py +334 -0
  102. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/extensions/tests/test_integration.py +1 -1
  103. robosystems_client-0.1.18/robosystems_client/extensions/tests/test_token_utils.py +274 -0
  104. robosystems_client-0.1.18/robosystems_client/extensions/token_utils.py +417 -0
  105. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/extensions/utils.py +32 -2
  106. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/__init__.py +16 -0
  107. robosystems_client-0.1.18/robosystems_client/models/email_verification_request.py +60 -0
  108. robosystems_client-0.1.18/robosystems_client/models/forgot_password_request.py +60 -0
  109. robosystems_client-0.1.18/robosystems_client/models/forgot_password_response_forgotpassword.py +44 -0
  110. robosystems_client-0.1.18/robosystems_client/models/resend_verification_email_response_resendverificationemail.py +44 -0
  111. robosystems_client-0.1.18/robosystems_client/models/reset_password_request.py +68 -0
  112. robosystems_client-0.1.18/robosystems_client/models/reset_password_validate_response.py +82 -0
  113. robosystems_client-0.1.16/PKG-INFO +0 -302
  114. robosystems_client-0.1.16/README.md +0 -253
  115. robosystems_client-0.1.16/robosystems_client/__init__.py +0 -14
  116. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  117. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  118. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/.github/workflows/claude.yml +0 -0
  119. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/.github/workflows/publish.yml +0 -0
  120. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/.github/workflows/test.yml +0 -0
  121. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/.gitignore +0 -0
  122. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/.python-version +0 -0
  123. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/.vscode/settings.json +0 -0
  124. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/.vscode/tasks.json +0 -0
  125. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/bin/create-pr +0 -0
  126. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/bin/create-release +0 -0
  127. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/justfile +0 -0
  128. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/pytest.ini +0 -0
  129. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/__init__.py +0 -0
  130. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/agent/__init__.py +0 -0
  131. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/auth/__init__.py +0 -0
  132. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/auth/check_password_strength.py +0 -0
  133. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/auth/complete_sso_auth.py +0 -0
  134. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/auth/get_captcha_config.py +0 -0
  135. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/auth/get_password_policy.py +0 -0
  136. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/auth/login_user.py +0 -0
  137. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/auth/register_user.py +0 -0
  138. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/auth/sso_login.py +0 -0
  139. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/auth/sso_token_exchange.py +0 -0
  140. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/backup/__init__.py +0 -0
  141. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/connections/__init__.py +0 -0
  142. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/copy/__init__.py +0 -0
  143. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/create/__init__.py +0 -0
  144. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/create/get_available_extensions.py +0 -0
  145. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_analytics/__init__.py +0 -0
  146. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_billing/__init__.py +0 -0
  147. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_credits/__init__.py +0 -0
  148. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_health/__init__.py +0 -0
  149. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_info/__init__.py +0 -0
  150. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/graph_limits/__init__.py +0 -0
  151. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/mcp/__init__.py +0 -0
  152. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/operations/__init__.py +0 -0
  153. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/query/__init__.py +0 -0
  154. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/schema/__init__.py +0 -0
  155. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/service_offerings/__init__.py +0 -0
  156. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/service_offerings/get_service_offerings.py +0 -0
  157. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/status/__init__.py +0 -0
  158. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/status/get_service_status.py +0 -0
  159. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/subgraphs/__init__.py +0 -0
  160. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user/__init__.py +0 -0
  161. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user_analytics/__init__.py +0 -0
  162. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user_limits/__init__.py +0 -0
  163. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/api/user_subscriptions/__init__.py +0 -0
  164. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/client.py +0 -0
  165. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/errors.py +0 -0
  166. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/extensions/README.md +0 -0
  167. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/extensions/sse_client.py +0 -0
  168. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/extensions/tests/__init__.py +0 -0
  169. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/extensions/tests/test_unit.py +0 -0
  170. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/account_info.py +0 -0
  171. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/add_on_credit_info.py +0 -0
  172. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_list_response.py +0 -0
  173. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_list_response_agents.py +0 -0
  174. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_list_response_agents_additional_property.py +0 -0
  175. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_message.py +0 -0
  176. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_metadata_response.py +0 -0
  177. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_mode.py +0 -0
  178. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_recommendation.py +0 -0
  179. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_recommendation_request.py +0 -0
  180. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_recommendation_request_context_type_0.py +0 -0
  181. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_recommendation_response.py +0 -0
  182. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_request.py +0 -0
  183. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_request_context_type_0.py +0 -0
  184. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_response.py +0 -0
  185. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_response_error_details_type_0.py +0 -0
  186. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_response_metadata_type_0.py +0 -0
  187. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/agent_response_tokens_used_type_0.py +0 -0
  188. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/api_key_info.py +0 -0
  189. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/api_keys_response.py +0 -0
  190. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/auth_response.py +0 -0
  191. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/auth_response_user.py +0 -0
  192. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/available_extension.py +0 -0
  193. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/available_extensions_response.py +0 -0
  194. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/backup_create_request.py +0 -0
  195. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/backup_list_response.py +0 -0
  196. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/backup_response.py +0 -0
  197. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/backup_restore_request.py +0 -0
  198. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/backup_stats_response.py +0 -0
  199. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/backup_stats_response_backup_formats.py +0 -0
  200. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/batch_agent_request.py +0 -0
  201. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/batch_agent_response.py +0 -0
  202. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/cancel_operation_response_canceloperation.py +0 -0
  203. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/cancellation_response.py +0 -0
  204. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/check_credit_balance_response_checkcreditbalance.py +0 -0
  205. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/connection_options_response.py +0 -0
  206. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/connection_provider_info.py +0 -0
  207. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/connection_provider_info_auth_type.py +0 -0
  208. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/connection_provider_info_provider.py +0 -0
  209. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/connection_response.py +0 -0
  210. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/connection_response_metadata.py +0 -0
  211. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/connection_response_provider.py +0 -0
  212. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/copy_response.py +0 -0
  213. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/copy_response_error_details_type_0.py +0 -0
  214. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/copy_response_status.py +0 -0
  215. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/create_api_key_request.py +0 -0
  216. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/create_api_key_response.py +0 -0
  217. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/create_connection_request.py +0 -0
  218. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/create_connection_request_provider.py +0 -0
  219. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/create_graph_request.py +0 -0
  220. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/create_subgraph_request.py +0 -0
  221. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/create_subgraph_request_metadata_type_0.py +0 -0
  222. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/credit_summary.py +0 -0
  223. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/credit_summary_response.py +0 -0
  224. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/credits_summary_response.py +0 -0
  225. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/credits_summary_response_credits_by_addon_type_0_item.py +0 -0
  226. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/custom_schema_definition.py +0 -0
  227. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/custom_schema_definition_metadata.py +0 -0
  228. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/custom_schema_definition_nodes_item.py +0 -0
  229. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/custom_schema_definition_relationships_item.py +0 -0
  230. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/cypher_query_request.py +0 -0
  231. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/cypher_query_request_parameters_type_0.py +0 -0
  232. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/data_frame_copy_request.py +0 -0
  233. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/data_frame_copy_request_format.py +0 -0
  234. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/database_health_response.py +0 -0
  235. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/database_info_response.py +0 -0
  236. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/delete_subgraph_request.py +0 -0
  237. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/delete_subgraph_response.py +0 -0
  238. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/detailed_transactions_response.py +0 -0
  239. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/detailed_transactions_response_date_range.py +0 -0
  240. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/detailed_transactions_response_summary.py +0 -0
  241. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/enhanced_credit_transaction_response.py +0 -0
  242. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/enhanced_credit_transaction_response_metadata.py +0 -0
  243. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/error_response.py +0 -0
  244. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/exchange_token_request.py +0 -0
  245. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/exchange_token_request_metadata_type_0.py +0 -0
  246. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/get_all_credit_summaries_response_getallcreditsummaries.py +0 -0
  247. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/get_all_shared_repository_limits_response_getallsharedrepositorylimits.py +0 -0
  248. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/get_backup_download_url_response_getbackupdownloadurl.py +0 -0
  249. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/get_current_auth_user_response_getcurrentauthuser.py +0 -0
  250. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/get_current_graph_bill_response_getcurrentgraphbill.py +0 -0
  251. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/get_graph_billing_history_response_getgraphbillinghistory.py +0 -0
  252. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/get_graph_limits_response_getgraphlimits.py +0 -0
  253. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/get_graph_monthly_bill_response_getgraphmonthlybill.py +0 -0
  254. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/get_graph_schema_info_response_getgraphschemainfo.py +0 -0
  255. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/get_graph_usage_details_response_getgraphusagedetails.py +0 -0
  256. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/get_operation_status_response_getoperationstatus.py +0 -0
  257. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/get_shared_repository_limits_response_getsharedrepositorylimits.py +0 -0
  258. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/get_storage_usage_response_getstorageusage.py +0 -0
  259. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/graph_info.py +0 -0
  260. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/graph_metadata.py +0 -0
  261. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/graph_metrics_response.py +0 -0
  262. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/graph_metrics_response_estimated_size.py +0 -0
  263. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/graph_metrics_response_health_status.py +0 -0
  264. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/graph_metrics_response_node_counts.py +0 -0
  265. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/graph_metrics_response_relationship_counts.py +0 -0
  266. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/graph_usage_response.py +0 -0
  267. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/graph_usage_response_query_statistics.py +0 -0
  268. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/graph_usage_response_recent_activity.py +0 -0
  269. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/graph_usage_response_storage_usage.py +0 -0
  270. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/health_status.py +0 -0
  271. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/health_status_details_type_0.py +0 -0
  272. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/http_validation_error.py +0 -0
  273. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/initial_entity_data.py +0 -0
  274. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/link_token_request.py +0 -0
  275. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/link_token_request_options_type_0.py +0 -0
  276. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/link_token_request_provider_type_0.py +0 -0
  277. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/list_connections_provider_type_0.py +0 -0
  278. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/list_schema_extensions_response_listschemaextensions.py +0 -0
  279. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/list_subgraphs_response.py +0 -0
  280. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/login_request.py +0 -0
  281. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/logout_user_response_logoutuser.py +0 -0
  282. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/mcp_tool_call.py +0 -0
  283. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/mcp_tool_call_arguments.py +0 -0
  284. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/mcp_tools_response.py +0 -0
  285. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/mcp_tools_response_tools_item.py +0 -0
  286. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/o_auth_callback_request.py +0 -0
  287. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/o_auth_init_request.py +0 -0
  288. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/o_auth_init_request_additional_params_type_0.py +0 -0
  289. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/o_auth_init_response.py +0 -0
  290. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/password_check_request.py +0 -0
  291. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/password_check_response.py +0 -0
  292. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/password_check_response_character_types.py +0 -0
  293. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/password_policy_response.py +0 -0
  294. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/password_policy_response_policy.py +0 -0
  295. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/plaid_connection_config.py +0 -0
  296. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/plaid_connection_config_accounts_type_0_item.py +0 -0
  297. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/plaid_connection_config_institution_type_0.py +0 -0
  298. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/quick_books_connection_config.py +0 -0
  299. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/register_request.py +0 -0
  300. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/repository_credits_response.py +0 -0
  301. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/repository_plan.py +0 -0
  302. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/repository_type.py +0 -0
  303. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/response_mode.py +0 -0
  304. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/s3_copy_request.py +0 -0
  305. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/s3_copy_request_file_format.py +0 -0
  306. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/s3_copy_request_s3_url_style_type_0.py +0 -0
  307. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/schema_export_response.py +0 -0
  308. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/schema_export_response_data_stats_type_0.py +0 -0
  309. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/schema_export_response_schema_definition_type_0.py +0 -0
  310. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/schema_validation_request.py +0 -0
  311. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/schema_validation_request_schema_definition_type_0.py +0 -0
  312. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/schema_validation_response.py +0 -0
  313. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/schema_validation_response_compatibility_type_0.py +0 -0
  314. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/schema_validation_response_stats_type_0.py +0 -0
  315. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/sec_connection_config.py +0 -0
  316. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/selection_criteria.py +0 -0
  317. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/sso_complete_request.py +0 -0
  318. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/sso_exchange_request.py +0 -0
  319. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/sso_exchange_response.py +0 -0
  320. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/sso_login_request.py +0 -0
  321. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/sso_token_response.py +0 -0
  322. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/storage_limit_response.py +0 -0
  323. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/subgraph_quota_response.py +0 -0
  324. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/subgraph_response.py +0 -0
  325. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/subgraph_response_metadata_type_0.py +0 -0
  326. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/subgraph_summary.py +0 -0
  327. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/subgraph_type.py +0 -0
  328. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/subscription_info.py +0 -0
  329. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/subscription_info_metadata.py +0 -0
  330. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/subscription_request.py +0 -0
  331. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/subscription_response.py +0 -0
  332. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/success_response.py +0 -0
  333. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/success_response_data_type_0.py +0 -0
  334. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/sync_connection_request.py +0 -0
  335. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/sync_connection_request_sync_options_type_0.py +0 -0
  336. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/sync_connection_response_syncconnection.py +0 -0
  337. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/tier_upgrade_request.py +0 -0
  338. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/transaction_summary_response.py +0 -0
  339. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/update_api_key_request.py +0 -0
  340. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/update_password_request.py +0 -0
  341. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/update_user_request.py +0 -0
  342. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/url_copy_request.py +0 -0
  343. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/url_copy_request_file_format.py +0 -0
  344. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/url_copy_request_headers_type_0.py +0 -0
  345. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/user_analytics_response.py +0 -0
  346. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/user_analytics_response_api_usage.py +0 -0
  347. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/user_analytics_response_graph_usage.py +0 -0
  348. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/user_analytics_response_limits.py +0 -0
  349. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/user_analytics_response_recent_activity_item.py +0 -0
  350. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/user_analytics_response_user_info.py +0 -0
  351. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/user_graph_summary.py +0 -0
  352. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/user_graphs_response.py +0 -0
  353. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/user_limits_response.py +0 -0
  354. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/user_response.py +0 -0
  355. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/user_subscriptions_response.py +0 -0
  356. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/user_usage_response.py +0 -0
  357. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/user_usage_response_graphs.py +0 -0
  358. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/user_usage_summary_response.py +0 -0
  359. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/user_usage_summary_response_usage_vs_limits.py +0 -0
  360. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/models/validation_error.py +0 -0
  361. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/py.typed +0 -0
  362. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/sdk-config.yaml +0 -0
  363. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/robosystems_client/types.py +0 -0
  364. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/ruff.toml +0 -0
  365. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/tests/__init__.py +0 -0
  366. {robosystems_client-0.1.16 → robosystems_client-0.1.18}/tests/test_client.py +0 -0
@@ -1,4 +1,4 @@
1
- name: Claude Create PR
1
+ name: Create Claude PR
2
2
 
3
3
  on:
4
4
  workflow_dispatch:
@@ -344,7 +344,6 @@ jobs:
344
344
  echo "✅ Pull Request created: $PR_URL"
345
345
  fi
346
346
 
347
-
348
347
  - name: Request Claude review
349
348
  if: ${{ inputs.claude_review }}
350
349
  run: |
@@ -16,6 +16,9 @@ on:
16
16
  jobs:
17
17
  create-release:
18
18
  runs-on: ubuntu-latest
19
+ outputs:
20
+ new_version: ${{ steps.new-version.outputs.new_version }}
21
+ branch_name: ${{ steps.new-version.outputs.branch_name }}
19
22
 
20
23
  steps:
21
24
  - name: Checkout code
@@ -105,15 +108,32 @@ jobs:
105
108
 
106
109
  echo "✅ Release branch created: $BRANCH_NAME"
107
110
 
111
+ create-tag:
112
+ needs: create-release
113
+ permissions:
114
+ contents: write
115
+ uses: ./.github/workflows/tag-release.yml
116
+ with:
117
+ branch_ref: ${{ needs.create-release.outputs.branch_name }}
118
+ secrets: inherit
119
+
120
+ create-summary:
121
+ needs: [create-release, create-tag]
122
+ if: always()
123
+ runs-on: ubuntu-latest
124
+ steps:
108
125
  - name: Create summary
109
126
  run: |
110
127
  echo "## 🚀 Python SDK Release Created" >> $GITHUB_STEP_SUMMARY
111
128
  echo "" >> $GITHUB_STEP_SUMMARY
112
- echo "**Version:** ${{ steps.current-version.outputs.current_version }} → ${{ steps.new-version.outputs.new_version }}" >> $GITHUB_STEP_SUMMARY
113
- echo "**Branch:** \`${{ steps.new-version.outputs.branch_name }}\`" >> $GITHUB_STEP_SUMMARY
129
+ echo "**Version:** ${{ needs.create-tag.outputs.version }}" >> $GITHUB_STEP_SUMMARY
130
+ echo "**Tag:** \`${{ needs.create-tag.outputs.tag_name }}\`" >> $GITHUB_STEP_SUMMARY
131
+ echo "**Branch:** \`${{ needs.create-release.outputs.branch_name }}\`" >> $GITHUB_STEP_SUMMARY
114
132
  echo "**Type:** ${{ inputs.version_type }}" >> $GITHUB_STEP_SUMMARY
115
133
  echo "" >> $GITHUB_STEP_SUMMARY
134
+ echo "**Release URL:** ${{ needs.create-tag.outputs.release_url }}" >> $GITHUB_STEP_SUMMARY
135
+ echo "" >> $GITHUB_STEP_SUMMARY
116
136
  echo "### Next Steps" >> $GITHUB_STEP_SUMMARY
117
- echo "The PyPI package will be automatically published when the release branch is pushed." >> $GITHUB_STEP_SUMMARY
137
+ echo "The PyPI package will be automatically published when the release tag is created." >> $GITHUB_STEP_SUMMARY
118
138
  echo "" >> $GITHUB_STEP_SUMMARY
119
139
  echo "Monitor the publish workflow: [View Workflows](https://github.com/RoboFinSystems/robosystems-python-client/actions/workflows/publish.yml)" >> $GITHUB_STEP_SUMMARY
@@ -1,21 +1,43 @@
1
1
  name: Claude Tag Release
2
2
 
3
3
  on:
4
- push:
5
- branches:
6
- - "release/**"
4
+ workflow_call:
5
+ inputs:
6
+ branch_ref:
7
+ description: 'The branch ref to tag'
8
+ required: true
9
+ type: string
10
+ outputs:
11
+ tag_name:
12
+ description: 'The created tag name'
13
+ value: ${{ jobs.action.outputs.tag_name }}
14
+ version:
15
+ description: 'The version number'
16
+ value: ${{ jobs.action.outputs.version }}
17
+ release_url:
18
+ description: 'The GitHub release URL'
19
+ value: ${{ jobs.action.outputs.release_url }}
20
+ secrets:
21
+ ACTIONS_TOKEN:
22
+ required: true
23
+ ANTHROPIC_API_KEY:
24
+ required: true
7
25
 
8
26
  jobs:
9
27
  action:
10
28
  runs-on: ubuntu-latest # Use GitHub-hosted runners for memory-intensive git/Claude operations
11
- timeout-minutes: 10
29
+ timeout-minutes: 15
12
30
  permissions:
13
31
  contents: write
32
+ outputs:
33
+ tag_name: ${{ steps.get-version.outputs.tag_name }}
34
+ version: ${{ steps.get-version.outputs.version }}
35
+ release_url: ${{ steps.create-release.outputs.upload_url }}
14
36
  steps:
15
37
  - name: Checkout
16
38
  uses: actions/checkout@v4
17
39
  with:
18
- ref: ${{ github.ref }}
40
+ ref: ${{ inputs.branch_ref }}
19
41
  token: ${{ secrets.ACTIONS_TOKEN }}
20
42
  fetch-depth: 0
21
43
 
@@ -24,6 +46,7 @@ jobs:
24
46
  run: |
25
47
  VERSION=$(grep "^version = " pyproject.toml | sed 's/version = "\(.*\)"/\1/')
26
48
  echo "version=$VERSION" >> $GITHUB_OUTPUT
49
+ echo "tag_name=v$VERSION" >> $GITHUB_OUTPUT
27
50
  echo "Found version: $VERSION"
28
51
 
29
52
  - name: Check If Tag Exists
@@ -164,7 +187,7 @@ jobs:
164
187
  ]
165
188
  }')
166
189
 
167
- RESPONSE=$(curl -s -X POST "https://api.anthropic.com/v1/messages" \
190
+ RESPONSE=$(curl -s --max-time 60 --retry 3 --retry-delay 10 -X POST "https://api.anthropic.com/v1/messages" \
168
191
  -H "Content-Type: application/json" \
169
192
  -H "x-api-key: ${{ secrets.ANTHROPIC_API_KEY }}" \
170
193
  -H "anthropic-version: 2023-06-01" \
@@ -205,6 +228,7 @@ jobs:
205
228
 
206
229
  - name: Create GitHub Release
207
230
  if: steps.check-tag.outputs.tag_exists == 'false'
231
+ id: create-release
208
232
  uses: softprops/action-gh-release@v1
209
233
  with:
210
234
  tag_name: v${{ steps.get-version.outputs.version }}
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 RFS LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,89 @@
1
+ Metadata-Version: 2.4
2
+ Name: robosystems-client
3
+ Version: 0.1.18
4
+ Summary: Python Client for RoboSystems financial graph database API
5
+ Author: RFS LLC
6
+ License: MIT
7
+ License-File: LICENSE
8
+ Keywords: api,client,financial,graph,kuzu,robosystems,sdk
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Framework :: AsyncIO
11
+ Classifier: Framework :: Pydantic
12
+ Classifier: Framework :: Pydantic :: 2
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: Financial and Insurance Industry
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Natural Language :: English
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Topic :: Database :: Front-Ends
23
+ Classifier: Topic :: Internet :: WWW/HTTP
24
+ Classifier: Topic :: Office/Business :: Financial
25
+ Classifier: Topic :: Office/Business :: Financial :: Accounting
26
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
27
+ Classifier: Typing :: Typed
28
+ Requires-Python: >=3.10
29
+ Requires-Dist: attrs>=23.0.0
30
+ Requires-Dist: httpx>=0.28.1
31
+ Requires-Dist: pydantic>=2.11.7
32
+ Requires-Dist: python-dateutil>=2.8.0
33
+ Requires-Dist: typing-extensions>=4.0.0
34
+ Provides-Extra: all
35
+ Requires-Dist: httpx>=0.28.1; extra == 'all'
36
+ Requires-Dist: pandas>=1.5.0; extra == 'all'
37
+ Provides-Extra: dev
38
+ Requires-Dist: build>=1.0.0; extra == 'dev'
39
+ Requires-Dist: openapi-python-client>=0.21.8; extra == 'dev'
40
+ Requires-Dist: pyright>=1.1.402; extra == 'dev'
41
+ Requires-Dist: pytest-asyncio>=0.26.0; extra == 'dev'
42
+ Requires-Dist: pytest-httpx>=0.30.0; extra == 'dev'
43
+ Requires-Dist: pytest>=8.3.5; extra == 'dev'
44
+ Requires-Dist: ruff>=0.12; extra == 'dev'
45
+ Requires-Dist: twine>=5.0.0; extra == 'dev'
46
+ Provides-Extra: extensions
47
+ Requires-Dist: httpx>=0.28.1; extra == 'extensions'
48
+ Requires-Dist: pandas>=1.5.0; extra == 'extensions'
49
+ Description-Content-Type: text/markdown
50
+
51
+ # RoboSystems Python Client
52
+
53
+ [![PyPI version](https://badge.fury.io/py/robosystems-client.svg)](https://pypi.org/project/robosystems-client/)
54
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
55
+
56
+ Official Python Client for the RoboSystems Financial Knowledge Graph API. Access comprehensive financial data including accounting transactions, financial reports, and advanced graph analytics through a type-safe, async-ready Python interface.
57
+
58
+ ## Features
59
+
60
+ - **Type-safe API client** with full type hints and Pydantic models
61
+ - **Async/await support** for high-performance applications
62
+ - **Streaming support** for memory-efficient processing of large result sets
63
+ - **Financial AI Agent** integration for natural language queries
64
+ - **Comprehensive error handling** with custom exceptions
65
+
66
+ ## Installation
67
+
68
+ ```bash
69
+ pip install robosystems-client
70
+ ```
71
+
72
+ ## API Reference
73
+
74
+ - API reference: [https://api.robosystems.ai](https://api.robosystems.ai)
75
+ - API documentation: [https://api.robosystems.ai/docs](https://api.robosystems.ai/docs)
76
+ - OpenAPI specification: [https://api.robosystems.ai/openapi.json](https://api.robosystems.ai/openapi.json)
77
+
78
+ ## Support
79
+
80
+ - Issues: [Issues](https://github.com/RoboFinSystems/robosystems-python-client/issues)
81
+ - Discussions: [Discussions](https://github.com/RoboFinSystems/robosystems-python-client/discussions)
82
+ - Projects: [Projects](https://github.com/RoboFinSystems/robosystems-python-client/projects)
83
+ - Wiki: [Wiki](https://github.com/RoboFinSystems/robosystems-python-client/wiki)
84
+
85
+ ## License
86
+
87
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
88
+
89
+ MIT © 2025 RFS LLC
@@ -0,0 +1,39 @@
1
+ # RoboSystems Python Client
2
+
3
+ [![PyPI version](https://badge.fury.io/py/robosystems-client.svg)](https://pypi.org/project/robosystems-client/)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+
6
+ Official Python Client for the RoboSystems Financial Knowledge Graph API. Access comprehensive financial data including accounting transactions, financial reports, and advanced graph analytics through a type-safe, async-ready Python interface.
7
+
8
+ ## Features
9
+
10
+ - **Type-safe API client** with full type hints and Pydantic models
11
+ - **Async/await support** for high-performance applications
12
+ - **Streaming support** for memory-efficient processing of large result sets
13
+ - **Financial AI Agent** integration for natural language queries
14
+ - **Comprehensive error handling** with custom exceptions
15
+
16
+ ## Installation
17
+
18
+ ```bash
19
+ pip install robosystems-client
20
+ ```
21
+
22
+ ## API Reference
23
+
24
+ - API reference: [https://api.robosystems.ai](https://api.robosystems.ai)
25
+ - API documentation: [https://api.robosystems.ai/docs](https://api.robosystems.ai/docs)
26
+ - OpenAPI specification: [https://api.robosystems.ai/openapi.json](https://api.robosystems.ai/openapi.json)
27
+
28
+ ## Support
29
+
30
+ - Issues: [Issues](https://github.com/RoboFinSystems/robosystems-python-client/issues)
31
+ - Discussions: [Discussions](https://github.com/RoboFinSystems/robosystems-python-client/discussions)
32
+ - Projects: [Projects](https://github.com/RoboFinSystems/robosystems-python-client/projects)
33
+ - Wiki: [Wiki](https://github.com/RoboFinSystems/robosystems-python-client/wiki)
34
+
35
+ ## License
36
+
37
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
38
+
39
+ MIT © 2025 RFS LLC
@@ -39,16 +39,9 @@ echo ""
39
39
 
40
40
  # Check for uncommitted changes
41
41
  if ! git diff --quiet || ! git diff --cached --quiet; then
42
- echo "⚠️ You have uncommitted changes."
43
- read -p "Do you want to stash them? (y/N): " -n 1 -r
44
- echo
45
- if [[ $REPLY =~ ^[Yy]$ ]]; then
46
- git stash push -m "Auto-stash before creating branch $FULL_BRANCH"
47
- echo "✅ Changes stashed"
48
- else
49
- echo "❌ Please commit or stash your changes first"
50
- exit 1
51
- fi
42
+ echo "⚠️ You have uncommitted changes. Auto-stashing..."
43
+ git stash push -m "Auto-stash before creating branch $FULL_BRANCH"
44
+ echo "✅ Changes stashed"
52
45
  fi
53
46
 
54
47
  # Fetch latest changes from remote
@@ -92,13 +85,10 @@ echo " 2. Push your changes: git push"
92
85
  echo " 3. Create a PR: gh pr create --base $BASE_BRANCH --title \"Your PR title\" --body \"Your PR description\""
93
86
  echo " or use: just create-pr $BASE_BRANCH $BRANCH_TYPE"
94
87
 
95
- # Check if we had stashed changes
88
+ # Check if we had stashed changes and auto-apply them
96
89
  if git stash list | grep -q "Auto-stash before creating branch $FULL_BRANCH"; then
97
90
  echo ""
98
- read -p "Do you want to apply your stashed changes? (y/N): " -n 1 -r
99
- echo
100
- if [[ $REPLY =~ ^[Yy]$ ]]; then
101
- git stash pop
102
- echo "✅ Stashed changes applied"
103
- fi
91
+ echo "Auto-applying stashed changes..."
92
+ git stash pop
93
+ echo "✅ Stashed changes applied"
104
94
  fi
@@ -1,11 +1,11 @@
1
1
  [project]
2
2
  name = "robosystems-client"
3
- version = "0.1.16"
3
+ version = "0.1.18"
4
4
  description = "Python Client for RoboSystems financial graph database API"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
7
7
  authors = [
8
- {name = "Harbinger FinLab"},
8
+ {name = "RFS LLC"},
9
9
  ]
10
10
  license = {text = "MIT"}
11
11
  keywords = ["client", "robosystems", "financial", "graph", "kuzu", "api", "sdk"]
@@ -0,0 +1,25 @@
1
+ """RoboSystems Python Client."""
2
+
3
+ from .client import AuthenticatedClient, Client
4
+
5
+ # Convenience alias for the main SDK
6
+ RoboSystemsSDK = AuthenticatedClient
7
+
8
+ __all__ = (
9
+ "AuthenticatedClient",
10
+ "Client",
11
+ "RoboSystemsSDK",
12
+ )
13
+
14
+
15
+ def _get_version() -> str:
16
+ """Get version from package metadata."""
17
+ try:
18
+ from importlib.metadata import version
19
+
20
+ return version("robosystems-client")
21
+ except Exception:
22
+ return "0.0.0+development"
23
+
24
+
25
+ __version__ = _get_version()
@@ -16,21 +16,28 @@ def _get_kwargs(
16
16
  graph_id: str,
17
17
  *,
18
18
  body: AgentRequest,
19
+ token: Union[None, Unset, str] = UNSET,
19
20
  authorization: Union[None, Unset, str] = UNSET,
20
- auth_token: Union[None, Unset, str] = UNSET,
21
21
  ) -> dict[str, Any]:
22
22
  headers: dict[str, Any] = {}
23
23
  if not isinstance(authorization, Unset):
24
24
  headers["authorization"] = authorization
25
25
 
26
- cookies = {}
27
- if auth_token is not UNSET:
28
- cookies["auth-token"] = auth_token
26
+ params: dict[str, Any] = {}
27
+
28
+ json_token: Union[None, Unset, str]
29
+ if isinstance(token, Unset):
30
+ json_token = UNSET
31
+ else:
32
+ json_token = token
33
+ params["token"] = json_token
34
+
35
+ params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
29
36
 
30
37
  _kwargs: dict[str, Any] = {
31
38
  "method": "post",
32
39
  "url": f"/v1/{graph_id}/agent",
33
- "cookies": cookies,
40
+ "params": params,
34
41
  }
35
42
 
36
43
  _kwargs["json"] = body.to_dict()
@@ -87,8 +94,8 @@ def sync_detailed(
87
94
  *,
88
95
  client: AuthenticatedClient,
89
96
  body: AgentRequest,
97
+ token: Union[None, Unset, str] = UNSET,
90
98
  authorization: Union[None, Unset, str] = UNSET,
91
- auth_token: Union[None, Unset, str] = UNSET,
92
99
  ) -> Response[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
93
100
  """Auto-select agent for query
94
101
 
@@ -104,8 +111,8 @@ def sync_detailed(
104
111
 
105
112
  Args:
106
113
  graph_id (str):
114
+ token (Union[None, Unset, str]): JWT token for SSE authentication
107
115
  authorization (Union[None, Unset, str]):
108
- auth_token (Union[None, Unset, str]):
109
116
  body (AgentRequest): Request model for agent interactions.
110
117
 
111
118
  Raises:
@@ -119,8 +126,8 @@ def sync_detailed(
119
126
  kwargs = _get_kwargs(
120
127
  graph_id=graph_id,
121
128
  body=body,
129
+ token=token,
122
130
  authorization=authorization,
123
- auth_token=auth_token,
124
131
  )
125
132
 
126
133
  response = client.get_httpx_client().request(
@@ -135,8 +142,8 @@ def sync(
135
142
  *,
136
143
  client: AuthenticatedClient,
137
144
  body: AgentRequest,
145
+ token: Union[None, Unset, str] = UNSET,
138
146
  authorization: Union[None, Unset, str] = UNSET,
139
- auth_token: Union[None, Unset, str] = UNSET,
140
147
  ) -> Optional[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
141
148
  """Auto-select agent for query
142
149
 
@@ -152,8 +159,8 @@ def sync(
152
159
 
153
160
  Args:
154
161
  graph_id (str):
162
+ token (Union[None, Unset, str]): JWT token for SSE authentication
155
163
  authorization (Union[None, Unset, str]):
156
- auth_token (Union[None, Unset, str]):
157
164
  body (AgentRequest): Request model for agent interactions.
158
165
 
159
166
  Raises:
@@ -168,8 +175,8 @@ def sync(
168
175
  graph_id=graph_id,
169
176
  client=client,
170
177
  body=body,
178
+ token=token,
171
179
  authorization=authorization,
172
- auth_token=auth_token,
173
180
  ).parsed
174
181
 
175
182
 
@@ -178,8 +185,8 @@ async def asyncio_detailed(
178
185
  *,
179
186
  client: AuthenticatedClient,
180
187
  body: AgentRequest,
188
+ token: Union[None, Unset, str] = UNSET,
181
189
  authorization: Union[None, Unset, str] = UNSET,
182
- auth_token: Union[None, Unset, str] = UNSET,
183
190
  ) -> Response[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
184
191
  """Auto-select agent for query
185
192
 
@@ -195,8 +202,8 @@ async def asyncio_detailed(
195
202
 
196
203
  Args:
197
204
  graph_id (str):
205
+ token (Union[None, Unset, str]): JWT token for SSE authentication
198
206
  authorization (Union[None, Unset, str]):
199
- auth_token (Union[None, Unset, str]):
200
207
  body (AgentRequest): Request model for agent interactions.
201
208
 
202
209
  Raises:
@@ -210,8 +217,8 @@ async def asyncio_detailed(
210
217
  kwargs = _get_kwargs(
211
218
  graph_id=graph_id,
212
219
  body=body,
220
+ token=token,
213
221
  authorization=authorization,
214
- auth_token=auth_token,
215
222
  )
216
223
 
217
224
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -224,8 +231,8 @@ async def asyncio(
224
231
  *,
225
232
  client: AuthenticatedClient,
226
233
  body: AgentRequest,
234
+ token: Union[None, Unset, str] = UNSET,
227
235
  authorization: Union[None, Unset, str] = UNSET,
228
- auth_token: Union[None, Unset, str] = UNSET,
229
236
  ) -> Optional[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
230
237
  """Auto-select agent for query
231
238
 
@@ -241,8 +248,8 @@ async def asyncio(
241
248
 
242
249
  Args:
243
250
  graph_id (str):
251
+ token (Union[None, Unset, str]): JWT token for SSE authentication
244
252
  authorization (Union[None, Unset, str]):
245
- auth_token (Union[None, Unset, str]):
246
253
  body (AgentRequest): Request model for agent interactions.
247
254
 
248
255
  Raises:
@@ -258,7 +265,7 @@ async def asyncio(
258
265
  graph_id=graph_id,
259
266
  client=client,
260
267
  body=body,
268
+ token=token,
261
269
  authorization=authorization,
262
- auth_token=auth_token,
263
270
  )
264
271
  ).parsed
@@ -15,21 +15,28 @@ def _get_kwargs(
15
15
  graph_id: str,
16
16
  *,
17
17
  body: BatchAgentRequest,
18
+ token: Union[None, Unset, str] = UNSET,
18
19
  authorization: Union[None, Unset, str] = UNSET,
19
- auth_token: Union[None, Unset, str] = UNSET,
20
20
  ) -> dict[str, Any]:
21
21
  headers: dict[str, Any] = {}
22
22
  if not isinstance(authorization, Unset):
23
23
  headers["authorization"] = authorization
24
24
 
25
- cookies = {}
26
- if auth_token is not UNSET:
27
- cookies["auth-token"] = auth_token
25
+ params: dict[str, Any] = {}
26
+
27
+ json_token: Union[None, Unset, str]
28
+ if isinstance(token, Unset):
29
+ json_token = UNSET
30
+ else:
31
+ json_token = token
32
+ params["token"] = json_token
33
+
34
+ params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
28
35
 
29
36
  _kwargs: dict[str, Any] = {
30
37
  "method": "post",
31
38
  "url": f"/v1/{graph_id}/agent/batch",
32
- "cookies": cookies,
39
+ "params": params,
33
40
  }
34
41
 
35
42
  _kwargs["json"] = body.to_dict()
@@ -82,8 +89,8 @@ def sync_detailed(
82
89
  *,
83
90
  client: AuthenticatedClient,
84
91
  body: BatchAgentRequest,
92
+ token: Union[None, Unset, str] = UNSET,
85
93
  authorization: Union[None, Unset, str] = UNSET,
86
- auth_token: Union[None, Unset, str] = UNSET,
87
94
  ) -> Response[Union[Any, BatchAgentResponse, HTTPValidationError]]:
88
95
  """Batch process multiple queries
89
96
 
@@ -104,8 +111,8 @@ def sync_detailed(
104
111
 
105
112
  Args:
106
113
  graph_id (str):
114
+ token (Union[None, Unset, str]): JWT token for SSE authentication
107
115
  authorization (Union[None, Unset, str]):
108
- auth_token (Union[None, Unset, str]):
109
116
  body (BatchAgentRequest): Request for batch processing multiple queries.
110
117
 
111
118
  Raises:
@@ -119,8 +126,8 @@ def sync_detailed(
119
126
  kwargs = _get_kwargs(
120
127
  graph_id=graph_id,
121
128
  body=body,
129
+ token=token,
122
130
  authorization=authorization,
123
- auth_token=auth_token,
124
131
  )
125
132
 
126
133
  response = client.get_httpx_client().request(
@@ -135,8 +142,8 @@ def sync(
135
142
  *,
136
143
  client: AuthenticatedClient,
137
144
  body: BatchAgentRequest,
145
+ token: Union[None, Unset, str] = UNSET,
138
146
  authorization: Union[None, Unset, str] = UNSET,
139
- auth_token: Union[None, Unset, str] = UNSET,
140
147
  ) -> Optional[Union[Any, BatchAgentResponse, HTTPValidationError]]:
141
148
  """Batch process multiple queries
142
149
 
@@ -157,8 +164,8 @@ def sync(
157
164
 
158
165
  Args:
159
166
  graph_id (str):
167
+ token (Union[None, Unset, str]): JWT token for SSE authentication
160
168
  authorization (Union[None, Unset, str]):
161
- auth_token (Union[None, Unset, str]):
162
169
  body (BatchAgentRequest): Request for batch processing multiple queries.
163
170
 
164
171
  Raises:
@@ -173,8 +180,8 @@ def sync(
173
180
  graph_id=graph_id,
174
181
  client=client,
175
182
  body=body,
183
+ token=token,
176
184
  authorization=authorization,
177
- auth_token=auth_token,
178
185
  ).parsed
179
186
 
180
187
 
@@ -183,8 +190,8 @@ async def asyncio_detailed(
183
190
  *,
184
191
  client: AuthenticatedClient,
185
192
  body: BatchAgentRequest,
193
+ token: Union[None, Unset, str] = UNSET,
186
194
  authorization: Union[None, Unset, str] = UNSET,
187
- auth_token: Union[None, Unset, str] = UNSET,
188
195
  ) -> Response[Union[Any, BatchAgentResponse, HTTPValidationError]]:
189
196
  """Batch process multiple queries
190
197
 
@@ -205,8 +212,8 @@ async def asyncio_detailed(
205
212
 
206
213
  Args:
207
214
  graph_id (str):
215
+ token (Union[None, Unset, str]): JWT token for SSE authentication
208
216
  authorization (Union[None, Unset, str]):
209
- auth_token (Union[None, Unset, str]):
210
217
  body (BatchAgentRequest): Request for batch processing multiple queries.
211
218
 
212
219
  Raises:
@@ -220,8 +227,8 @@ async def asyncio_detailed(
220
227
  kwargs = _get_kwargs(
221
228
  graph_id=graph_id,
222
229
  body=body,
230
+ token=token,
223
231
  authorization=authorization,
224
- auth_token=auth_token,
225
232
  )
226
233
 
227
234
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -234,8 +241,8 @@ async def asyncio(
234
241
  *,
235
242
  client: AuthenticatedClient,
236
243
  body: BatchAgentRequest,
244
+ token: Union[None, Unset, str] = UNSET,
237
245
  authorization: Union[None, Unset, str] = UNSET,
238
- auth_token: Union[None, Unset, str] = UNSET,
239
246
  ) -> Optional[Union[Any, BatchAgentResponse, HTTPValidationError]]:
240
247
  """Batch process multiple queries
241
248
 
@@ -256,8 +263,8 @@ async def asyncio(
256
263
 
257
264
  Args:
258
265
  graph_id (str):
266
+ token (Union[None, Unset, str]): JWT token for SSE authentication
259
267
  authorization (Union[None, Unset, str]):
260
- auth_token (Union[None, Unset, str]):
261
268
  body (BatchAgentRequest): Request for batch processing multiple queries.
262
269
 
263
270
  Raises:
@@ -273,7 +280,7 @@ async def asyncio(
273
280
  graph_id=graph_id,
274
281
  client=client,
275
282
  body=body,
283
+ token=token,
276
284
  authorization=authorization,
277
- auth_token=auth_token,
278
285
  )
279
286
  ).parsed