robosystems-client 0.1.15__tar.gz → 0.1.17__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.

Potentially problematic release.


This version of robosystems-client might be problematic. Click here for more details.

Files changed (366) hide show
  1. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/.github/workflows/create-pr.yml +32 -17
  2. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/.github/workflows/create-release.yml +49 -29
  3. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/.github/workflows/tag-release.yml +30 -6
  4. robosystems_client-0.1.17/.vscode/tasks.json +142 -0
  5. robosystems_client-0.1.17/LICENSE +21 -0
  6. robosystems_client-0.1.17/PKG-INFO +89 -0
  7. robosystems_client-0.1.17/README.md +39 -0
  8. robosystems_client-0.1.17/bin/create-feature +94 -0
  9. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/justfile +23 -27
  10. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/pyproject.toml +2 -2
  11. robosystems_client-0.1.17/robosystems_client/api/agent/auto_select_agent.py +246 -0
  12. robosystems_client-0.1.17/robosystems_client/api/agent/batch_process_queries.py +261 -0
  13. robosystems_client-0.1.17/robosystems_client/api/agent/execute_specific_agent.py +258 -0
  14. robosystems_client-0.1.17/robosystems_client/api/agent/get_agent_metadata.py +238 -0
  15. robosystems_client-0.1.17/robosystems_client/api/agent/list_agents.py +246 -0
  16. robosystems_client-0.1.17/robosystems_client/api/agent/recommend_agent.py +255 -0
  17. robosystems_client-0.1.17/robosystems_client/api/auth/forgot_password.py +191 -0
  18. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/auth/generate_sso_token.py +18 -0
  19. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/auth/get_current_auth_user.py +4 -22
  20. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/auth/logout_user.py +17 -17
  21. robosystems_client-0.1.15/robosystems_client/api/auth/refresh_session.py → robosystems_client-0.1.17/robosystems_client/api/auth/refresh_auth_session.py +21 -21
  22. robosystems_client-0.1.17/robosystems_client/api/auth/resend_verification_email.py +222 -0
  23. robosystems_client-0.1.17/robosystems_client/api/auth/reset_password.py +177 -0
  24. robosystems_client-0.1.17/robosystems_client/api/auth/validate_reset_token.py +171 -0
  25. robosystems_client-0.1.17/robosystems_client/api/auth/verify_email.py +177 -0
  26. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/backup/create_backup.py +0 -18
  27. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/backup/export_backup.py +0 -18
  28. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/backup/get_backup_download_url.py +0 -18
  29. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/backup/get_backup_stats.py +0 -18
  30. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/backup/list_backups.py +0 -18
  31. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/backup/restore_backup.py +0 -18
  32. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/connections/create_connection.py +0 -18
  33. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/connections/create_link_token.py +0 -18
  34. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/connections/delete_connection.py +0 -18
  35. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/connections/exchange_link_token.py +0 -18
  36. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/connections/get_connection.py +0 -18
  37. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/connections/get_connection_options.py +0 -18
  38. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/connections/init_o_auth.py +0 -18
  39. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/connections/list_connections.py +0 -18
  40. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/connections/oauth_callback.py +4 -22
  41. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/connections/sync_connection.py +0 -18
  42. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/copy/copy_data_to_graph.py +0 -18
  43. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/create/create_graph.py +0 -18
  44. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_analytics/get_graph_metrics.py +0 -18
  45. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_analytics/get_graph_usage_stats.py +0 -18
  46. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_billing/get_current_graph_bill.py +0 -18
  47. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_billing/get_graph_billing_history.py +0 -18
  48. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_billing/get_graph_monthly_bill.py +0 -18
  49. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_billing/get_graph_usage_details.py +0 -18
  50. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_credits/check_credit_balance.py +14 -28
  51. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_credits/check_storage_limits.py +0 -18
  52. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_credits/get_credit_summary.py +0 -18
  53. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_credits/get_storage_usage.py +0 -18
  54. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_credits/list_credit_transactions.py +0 -18
  55. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_health/get_database_health.py +0 -18
  56. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_info/get_database_info.py +0 -18
  57. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_limits/get_graph_limits.py +0 -18
  58. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/mcp/call_mcp_tool.py +0 -18
  59. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/mcp/list_mcp_tools.py +0 -18
  60. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/operations/cancel_operation.py +0 -18
  61. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/operations/get_operation_status.py +0 -18
  62. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/operations/stream_operation_events.py +0 -18
  63. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/query/execute_cypher_query.py +0 -18
  64. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/schema/export_graph_schema.py +0 -18
  65. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/schema/get_graph_schema_info.py +0 -18
  66. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/schema/list_schema_extensions.py +0 -18
  67. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/schema/validate_schema.py +0 -18
  68. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/subgraphs/create_subgraph.py +0 -18
  69. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/subgraphs/delete_subgraph.py +0 -18
  70. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/subgraphs/get_subgraph_info.py +0 -18
  71. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/subgraphs/get_subgraph_quota.py +0 -18
  72. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/subgraphs/list_subgraphs.py +0 -18
  73. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user/create_user_api_key.py +0 -18
  74. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user/get_all_credit_summaries.py +0 -18
  75. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user/get_current_user.py +0 -18
  76. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user/get_user_graphs.py +0 -18
  77. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user/list_user_api_keys.py +0 -18
  78. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user/revoke_user_api_key.py +0 -18
  79. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user/select_user_graph.py +0 -18
  80. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user/update_user.py +0 -18
  81. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user/update_user_api_key.py +0 -18
  82. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user/update_user_password.py +0 -18
  83. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user_analytics/get_detailed_user_analytics.py +0 -18
  84. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user_analytics/get_user_usage_overview.py +0 -18
  85. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user_limits/get_all_shared_repository_limits.py +0 -18
  86. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user_limits/get_shared_repository_limits.py +0 -18
  87. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user_limits/get_user_limits.py +0 -18
  88. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user_limits/get_user_usage.py +0 -18
  89. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py +0 -18
  90. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user_subscriptions/get_repository_credits.py +0 -18
  91. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user_subscriptions/get_shared_repository_credits.py +0 -18
  92. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py +0 -18
  93. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py +0 -18
  94. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py +0 -18
  95. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/__init__.py +51 -3
  96. robosystems_client-0.1.17/robosystems_client/models/agent_list_response.py +74 -0
  97. robosystems_client-0.1.17/robosystems_client/models/agent_list_response_agents.py +67 -0
  98. robosystems_client-0.1.15/robosystems_client/models/credits_summary_response_credits_by_addon_item.py → robosystems_client-0.1.17/robosystems_client/models/agent_list_response_agents_additional_property.py +5 -5
  99. robosystems_client-0.1.17/robosystems_client/models/agent_message.py +102 -0
  100. robosystems_client-0.1.17/robosystems_client/models/agent_metadata_response.py +133 -0
  101. robosystems_client-0.1.17/robosystems_client/models/agent_mode.py +11 -0
  102. robosystems_client-0.1.17/robosystems_client/models/agent_recommendation.py +106 -0
  103. robosystems_client-0.1.17/robosystems_client/models/agent_recommendation_request.py +108 -0
  104. robosystems_client-0.1.17/robosystems_client/models/agent_recommendation_request_context_type_0.py +44 -0
  105. robosystems_client-0.1.17/robosystems_client/models/agent_recommendation_response.py +82 -0
  106. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/agent_request.py +110 -6
  107. robosystems_client-0.1.17/robosystems_client/models/agent_response.py +282 -0
  108. robosystems_client-0.1.17/robosystems_client/models/agent_response_error_details_type_0.py +44 -0
  109. robosystems_client-0.1.17/robosystems_client/models/agent_response_tokens_used_type_0.py +44 -0
  110. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/auth_response.py +20 -6
  111. robosystems_client-0.1.17/robosystems_client/models/batch_agent_request.py +85 -0
  112. robosystems_client-0.1.17/robosystems_client/models/batch_agent_response.py +90 -0
  113. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/credit_summary.py +35 -9
  114. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/credits_summary_response.py +47 -21
  115. robosystems_client-0.1.17/robosystems_client/models/credits_summary_response_credits_by_addon_type_0_item.py +44 -0
  116. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/custom_schema_definition.py +7 -14
  117. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/custom_schema_definition_metadata.py +1 -6
  118. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/database_health_response.py +11 -11
  119. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/database_info_response.py +13 -14
  120. robosystems_client-0.1.15/robosystems_client/models/agent_message.py → robosystems_client-0.1.17/robosystems_client/models/email_verification_request.py +12 -20
  121. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/error_response.py +4 -8
  122. robosystems_client-0.1.17/robosystems_client/models/forgot_password_request.py +60 -0
  123. robosystems_client-0.1.17/robosystems_client/models/forgot_password_response_forgotpassword.py +44 -0
  124. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/graph_metadata.py +4 -5
  125. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/health_status.py +2 -2
  126. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/repository_credits_response.py +43 -16
  127. robosystems_client-0.1.17/robosystems_client/models/resend_verification_email_response_resendverificationemail.py +44 -0
  128. robosystems_client-0.1.17/robosystems_client/models/reset_password_request.py +68 -0
  129. robosystems_client-0.1.17/robosystems_client/models/reset_password_validate_response.py +82 -0
  130. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/schema_export_response.py +5 -8
  131. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/schema_validation_request.py +3 -5
  132. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/schema_validation_response.py +5 -5
  133. robosystems_client-0.1.17/robosystems_client/models/selection_criteria.py +122 -0
  134. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/success_response.py +1 -1
  135. robosystems_client-0.1.15/.github/workflows/create-feature.yml +0 -111
  136. robosystems_client-0.1.15/.vscode/tasks.json +0 -312
  137. robosystems_client-0.1.15/PKG-INFO +0 -302
  138. robosystems_client-0.1.15/README.md +0 -253
  139. robosystems_client-0.1.15/bin/create-feature +0 -110
  140. robosystems_client-0.1.15/robosystems_client/api/agent/query_financial_agent.py +0 -423
  141. robosystems_client-0.1.15/robosystems_client/models/agent_response.py +0 -132
  142. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  143. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  144. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/.github/workflows/claude.yml +0 -0
  145. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/.github/workflows/publish.yml +0 -0
  146. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/.github/workflows/test.yml +0 -0
  147. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/.gitignore +0 -0
  148. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/.python-version +0 -0
  149. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/.vscode/settings.json +0 -0
  150. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/bin/create-pr +0 -0
  151. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/bin/create-release +0 -0
  152. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/pytest.ini +0 -0
  153. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/__init__.py +0 -0
  154. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/__init__.py +0 -0
  155. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/agent/__init__.py +0 -0
  156. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/auth/__init__.py +0 -0
  157. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/auth/check_password_strength.py +0 -0
  158. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/auth/complete_sso_auth.py +0 -0
  159. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/auth/get_captcha_config.py +0 -0
  160. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/auth/get_password_policy.py +0 -0
  161. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/auth/login_user.py +0 -0
  162. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/auth/register_user.py +0 -0
  163. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/auth/sso_login.py +0 -0
  164. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/auth/sso_token_exchange.py +0 -0
  165. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/backup/__init__.py +0 -0
  166. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/connections/__init__.py +0 -0
  167. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/copy/__init__.py +0 -0
  168. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/create/__init__.py +0 -0
  169. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/create/get_available_extensions.py +0 -0
  170. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_analytics/__init__.py +0 -0
  171. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_billing/__init__.py +0 -0
  172. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_credits/__init__.py +0 -0
  173. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_health/__init__.py +0 -0
  174. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_info/__init__.py +0 -0
  175. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/graph_limits/__init__.py +0 -0
  176. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/mcp/__init__.py +0 -0
  177. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/operations/__init__.py +0 -0
  178. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/query/__init__.py +0 -0
  179. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/schema/__init__.py +0 -0
  180. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/service_offerings/__init__.py +0 -0
  181. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/service_offerings/get_service_offerings.py +0 -0
  182. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/status/__init__.py +0 -0
  183. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/status/get_service_status.py +0 -0
  184. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/subgraphs/__init__.py +0 -0
  185. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user/__init__.py +0 -0
  186. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user_analytics/__init__.py +0 -0
  187. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user_limits/__init__.py +0 -0
  188. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/api/user_subscriptions/__init__.py +0 -0
  189. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/client.py +0 -0
  190. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/errors.py +0 -0
  191. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/extensions/README.md +0 -0
  192. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/extensions/__init__.py +0 -0
  193. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/extensions/auth_integration.py +0 -0
  194. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/extensions/copy_client.py +0 -0
  195. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/extensions/extensions.py +0 -0
  196. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/extensions/operation_client.py +0 -0
  197. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/extensions/query_client.py +0 -0
  198. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/extensions/sse_client.py +0 -0
  199. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/extensions/tests/__init__.py +0 -0
  200. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/extensions/tests/test_integration.py +0 -0
  201. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/extensions/tests/test_unit.py +0 -0
  202. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/extensions/utils.py +0 -0
  203. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/account_info.py +0 -0
  204. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/add_on_credit_info.py +0 -0
  205. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/agent_request_context_type_0.py +0 -0
  206. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/agent_response_metadata_type_0.py +0 -0
  207. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/api_key_info.py +0 -0
  208. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/api_keys_response.py +0 -0
  209. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/auth_response_user.py +0 -0
  210. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/available_extension.py +0 -0
  211. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/available_extensions_response.py +0 -0
  212. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/backup_create_request.py +0 -0
  213. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/backup_list_response.py +0 -0
  214. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/backup_response.py +0 -0
  215. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/backup_restore_request.py +0 -0
  216. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/backup_stats_response.py +0 -0
  217. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/backup_stats_response_backup_formats.py +0 -0
  218. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/cancel_operation_response_canceloperation.py +0 -0
  219. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/cancellation_response.py +0 -0
  220. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/check_credit_balance_response_checkcreditbalance.py +0 -0
  221. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/connection_options_response.py +0 -0
  222. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/connection_provider_info.py +0 -0
  223. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/connection_provider_info_auth_type.py +0 -0
  224. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/connection_provider_info_provider.py +0 -0
  225. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/connection_response.py +0 -0
  226. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/connection_response_metadata.py +0 -0
  227. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/connection_response_provider.py +0 -0
  228. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/copy_response.py +0 -0
  229. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/copy_response_error_details_type_0.py +0 -0
  230. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/copy_response_status.py +0 -0
  231. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/create_api_key_request.py +0 -0
  232. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/create_api_key_response.py +0 -0
  233. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/create_connection_request.py +0 -0
  234. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/create_connection_request_provider.py +0 -0
  235. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/create_graph_request.py +0 -0
  236. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/create_subgraph_request.py +0 -0
  237. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/create_subgraph_request_metadata_type_0.py +0 -0
  238. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/credit_summary_response.py +0 -0
  239. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/custom_schema_definition_nodes_item.py +0 -0
  240. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/custom_schema_definition_relationships_item.py +0 -0
  241. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/cypher_query_request.py +0 -0
  242. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/cypher_query_request_parameters_type_0.py +0 -0
  243. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/data_frame_copy_request.py +0 -0
  244. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/data_frame_copy_request_format.py +0 -0
  245. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/delete_subgraph_request.py +0 -0
  246. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/delete_subgraph_response.py +0 -0
  247. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/detailed_transactions_response.py +0 -0
  248. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/detailed_transactions_response_date_range.py +0 -0
  249. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/detailed_transactions_response_summary.py +0 -0
  250. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/enhanced_credit_transaction_response.py +0 -0
  251. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/enhanced_credit_transaction_response_metadata.py +0 -0
  252. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/exchange_token_request.py +0 -0
  253. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/exchange_token_request_metadata_type_0.py +0 -0
  254. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/get_all_credit_summaries_response_getallcreditsummaries.py +0 -0
  255. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/get_all_shared_repository_limits_response_getallsharedrepositorylimits.py +0 -0
  256. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/get_backup_download_url_response_getbackupdownloadurl.py +0 -0
  257. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/get_current_auth_user_response_getcurrentauthuser.py +0 -0
  258. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/get_current_graph_bill_response_getcurrentgraphbill.py +0 -0
  259. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/get_graph_billing_history_response_getgraphbillinghistory.py +0 -0
  260. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/get_graph_limits_response_getgraphlimits.py +0 -0
  261. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/get_graph_monthly_bill_response_getgraphmonthlybill.py +0 -0
  262. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/get_graph_schema_info_response_getgraphschemainfo.py +0 -0
  263. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/get_graph_usage_details_response_getgraphusagedetails.py +0 -0
  264. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/get_operation_status_response_getoperationstatus.py +0 -0
  265. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/get_shared_repository_limits_response_getsharedrepositorylimits.py +0 -0
  266. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/get_storage_usage_response_getstorageusage.py +0 -0
  267. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/graph_info.py +0 -0
  268. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/graph_metrics_response.py +0 -0
  269. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/graph_metrics_response_estimated_size.py +0 -0
  270. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/graph_metrics_response_health_status.py +0 -0
  271. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/graph_metrics_response_node_counts.py +0 -0
  272. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/graph_metrics_response_relationship_counts.py +0 -0
  273. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/graph_usage_response.py +0 -0
  274. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/graph_usage_response_query_statistics.py +0 -0
  275. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/graph_usage_response_recent_activity.py +0 -0
  276. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/graph_usage_response_storage_usage.py +0 -0
  277. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/health_status_details_type_0.py +0 -0
  278. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/http_validation_error.py +0 -0
  279. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/initial_entity_data.py +0 -0
  280. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/link_token_request.py +0 -0
  281. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/link_token_request_options_type_0.py +0 -0
  282. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/link_token_request_provider_type_0.py +0 -0
  283. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/list_connections_provider_type_0.py +0 -0
  284. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/list_schema_extensions_response_listschemaextensions.py +0 -0
  285. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/list_subgraphs_response.py +0 -0
  286. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/login_request.py +0 -0
  287. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/logout_user_response_logoutuser.py +0 -0
  288. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/mcp_tool_call.py +0 -0
  289. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/mcp_tool_call_arguments.py +0 -0
  290. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/mcp_tools_response.py +0 -0
  291. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/mcp_tools_response_tools_item.py +0 -0
  292. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/o_auth_callback_request.py +0 -0
  293. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/o_auth_init_request.py +0 -0
  294. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/o_auth_init_request_additional_params_type_0.py +0 -0
  295. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/o_auth_init_response.py +0 -0
  296. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/password_check_request.py +0 -0
  297. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/password_check_response.py +0 -0
  298. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/password_check_response_character_types.py +0 -0
  299. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/password_policy_response.py +0 -0
  300. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/password_policy_response_policy.py +0 -0
  301. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/plaid_connection_config.py +0 -0
  302. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/plaid_connection_config_accounts_type_0_item.py +0 -0
  303. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/plaid_connection_config_institution_type_0.py +0 -0
  304. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/quick_books_connection_config.py +0 -0
  305. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/register_request.py +0 -0
  306. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/repository_plan.py +0 -0
  307. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/repository_type.py +0 -0
  308. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/response_mode.py +0 -0
  309. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/s3_copy_request.py +0 -0
  310. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/s3_copy_request_file_format.py +0 -0
  311. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/s3_copy_request_s3_url_style_type_0.py +0 -0
  312. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/schema_export_response_data_stats_type_0.py +0 -0
  313. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/schema_export_response_schema_definition_type_0.py +0 -0
  314. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/schema_validation_request_schema_definition_type_0.py +0 -0
  315. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/schema_validation_response_compatibility_type_0.py +0 -0
  316. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/schema_validation_response_stats_type_0.py +0 -0
  317. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/sec_connection_config.py +0 -0
  318. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/sso_complete_request.py +0 -0
  319. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/sso_exchange_request.py +0 -0
  320. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/sso_exchange_response.py +0 -0
  321. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/sso_login_request.py +0 -0
  322. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/sso_token_response.py +0 -0
  323. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/storage_limit_response.py +0 -0
  324. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/subgraph_quota_response.py +0 -0
  325. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/subgraph_response.py +0 -0
  326. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/subgraph_response_metadata_type_0.py +0 -0
  327. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/subgraph_summary.py +0 -0
  328. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/subgraph_type.py +0 -0
  329. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/subscription_info.py +0 -0
  330. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/subscription_info_metadata.py +0 -0
  331. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/subscription_request.py +0 -0
  332. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/subscription_response.py +0 -0
  333. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/success_response_data_type_0.py +0 -0
  334. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/sync_connection_request.py +0 -0
  335. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/sync_connection_request_sync_options_type_0.py +0 -0
  336. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/sync_connection_response_syncconnection.py +0 -0
  337. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/tier_upgrade_request.py +0 -0
  338. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/transaction_summary_response.py +0 -0
  339. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/update_api_key_request.py +0 -0
  340. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/update_password_request.py +0 -0
  341. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/update_user_request.py +0 -0
  342. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/url_copy_request.py +0 -0
  343. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/url_copy_request_file_format.py +0 -0
  344. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/url_copy_request_headers_type_0.py +0 -0
  345. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/user_analytics_response.py +0 -0
  346. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/user_analytics_response_api_usage.py +0 -0
  347. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/user_analytics_response_graph_usage.py +0 -0
  348. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/user_analytics_response_limits.py +0 -0
  349. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/user_analytics_response_recent_activity_item.py +0 -0
  350. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/user_analytics_response_user_info.py +0 -0
  351. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/user_graph_summary.py +0 -0
  352. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/user_graphs_response.py +0 -0
  353. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/user_limits_response.py +0 -0
  354. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/user_response.py +0 -0
  355. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/user_subscriptions_response.py +0 -0
  356. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/user_usage_response.py +0 -0
  357. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/user_usage_response_graphs.py +0 -0
  358. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/user_usage_summary_response.py +0 -0
  359. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/user_usage_summary_response_usage_vs_limits.py +0 -0
  360. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/models/validation_error.py +0 -0
  361. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/py.typed +0 -0
  362. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/sdk-config.yaml +0 -0
  363. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/robosystems_client/types.py +0 -0
  364. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/ruff.toml +0 -0
  365. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/tests/__init__.py +0 -0
  366. {robosystems_client-0.1.15 → robosystems_client-0.1.17}/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:
@@ -98,15 +98,15 @@ jobs:
98
98
  COMMIT_RANGE="origin/$TARGET_BRANCH...$SOURCE_BRANCH"
99
99
 
100
100
  # Get diff stats (limit output to prevent memory issues)
101
- DIFF_STATS=$(git diff --stat --no-color $COMMIT_RANGE | head -50) # Limit to 50 lines
101
+ DIFF_STATS=$(git diff --stat --no-color $COMMIT_RANGE | head -50 | sed 's/`//g') # Limit to 50 lines
102
102
  FILES_CHANGED=$(git diff --name-only $COMMIT_RANGE | wc -l)
103
103
  COMMITS_COUNT=$(git rev-list --count $COMMIT_RANGE)
104
104
 
105
105
  # Get commit messages (limit to recent commits)
106
- COMMIT_MESSAGES=$(git log --oneline --no-color $COMMIT_RANGE | head -20) # Limit to 20 commits
106
+ COMMIT_MESSAGES=$(git log --oneline --no-color $COMMIT_RANGE | head -20 | sed 's/`//g') # Limit to 20 commits
107
107
 
108
108
  # Get detailed changes (limit to prevent memory issues)
109
- DETAILED_CHANGES=$(git diff $COMMIT_RANGE --name-status --no-color | head -100) # Limit to 100 files
109
+ DETAILED_CHANGES=$(git diff $COMMIT_RANGE --name-status --no-color | head -100 | sed 's/`//g') # Limit to 100 files
110
110
 
111
111
  # Create analysis prompt for Claude
112
112
  cat << 'EOF' > /tmp/pr_analysis_prompt.txt
@@ -297,14 +297,28 @@ jobs:
297
297
 
298
298
  - name: Create Pull Request
299
299
  id: create-pr
300
+ env:
301
+ CLAUDE_PR_TITLE: ${{ steps.claude.outputs.pr_title }}
302
+ CLAUDE_PR_DESCRIPTION: ${{ steps.claude.outputs.pr_description }}
300
303
  run: |
301
304
  SOURCE_BRANCH="${{ steps.source-branch.outputs.source_branch }}"
302
305
  TARGET_BRANCH="${{ inputs.target_branch }}"
303
- PR_TITLE="${{ steps.claude.outputs.pr_title }}"
304
306
 
305
- # Create PR description with Claude analysis + footer
306
- cat > /tmp/pr_description.txt << EOF
307
- ${{ steps.claude.outputs.pr_description }}
307
+ # Use environment variables to safely handle Claude's output
308
+ PR_TITLE="$CLAUDE_PR_TITLE"
309
+ PR_DESCRIPTION="$CLAUDE_PR_DESCRIPTION"
310
+
311
+ # Check if PR already exists
312
+ EXISTING_PR=$(gh pr list --head "$SOURCE_BRANCH" --base "$TARGET_BRANCH" --json url --jq '.[0].url' 2>/dev/null || echo "")
313
+
314
+ if [ -n "$EXISTING_PR" ] && [ "$EXISTING_PR" != "null" ]; then
315
+ echo "✅ PR already exists: $EXISTING_PR"
316
+ echo "pr_url=$EXISTING_PR" >> $GITHUB_OUTPUT
317
+ PR_URL="$EXISTING_PR"
318
+ else
319
+ # Create PR description with Claude analysis + footer
320
+ cat > /tmp/pr_description.txt << EOF
321
+ $PR_DESCRIPTION
308
322
 
309
323
  ---
310
324
  🤖 Generated with [Claude Code](https://claude.ai/code)
@@ -317,17 +331,18 @@ jobs:
317
331
  Co-Authored-By: Claude <noreply@anthropic.com>
318
332
  EOF
319
333
 
320
- PR_DESCRIPTION=$(cat /tmp/pr_description.txt)
334
+ FINAL_PR_DESCRIPTION=$(cat /tmp/pr_description.txt)
321
335
 
322
- # Create the PR
323
- PR_URL=$(gh pr create \
324
- --title "$PR_TITLE" \
325
- --body "$PR_DESCRIPTION" \
326
- --base "$TARGET_BRANCH" \
327
- --head "$SOURCE_BRANCH")
336
+ # Create the PR
337
+ PR_URL=$(gh pr create \
338
+ --title "$PR_TITLE" \
339
+ --body "$FINAL_PR_DESCRIPTION" \
340
+ --base "$TARGET_BRANCH" \
341
+ --head "$SOURCE_BRANCH")
328
342
 
329
- echo "pr_url=$PR_URL" >> $GITHUB_OUTPUT
330
- echo "✅ Pull Request created: $PR_URL"
343
+ echo "pr_url=$PR_URL" >> $GITHUB_OUTPUT
344
+ echo "✅ Pull Request created: $PR_URL"
345
+ fi
331
346
 
332
347
  - name: Request Claude review
333
348
  if: ${{ inputs.claude_review }}
@@ -4,9 +4,9 @@ on:
4
4
  workflow_dispatch:
5
5
  inputs:
6
6
  version_type:
7
- description: 'Version type'
7
+ description: "Version type"
8
8
  required: true
9
- default: 'patch'
9
+ default: "patch"
10
10
  type: choice
11
11
  options:
12
12
  - major
@@ -16,7 +16,10 @@ on:
16
16
  jobs:
17
17
  create-release:
18
18
  runs-on: ubuntu-latest
19
-
19
+ outputs:
20
+ new_version: ${{ steps.new-version.outputs.new_version }}
21
+ branch_name: ${{ steps.new-version.outputs.branch_name }}
22
+
20
23
  steps:
21
24
  - name: Checkout code
22
25
  uses: actions/checkout@v4
@@ -24,29 +27,29 @@ jobs:
24
27
  ref: main
25
28
  fetch-depth: 0
26
29
  token: ${{ secrets.ACTIONS_TOKEN }}
27
-
30
+
28
31
  - name: Setup Python
29
32
  uses: actions/setup-python@v5
30
33
  with:
31
- python-version: '3.12'
32
-
34
+ python-version: "3.12"
35
+
33
36
  - name: Install uv
34
37
  uses: astral-sh/setup-uv@v6
35
-
38
+
36
39
  - name: Get current version
37
40
  id: current-version
38
41
  run: |
39
42
  CURRENT_VERSION=$(grep '^version = ' pyproject.toml | sed 's/version = "\(.*\)"/\1/')
40
43
  echo "current_version=$CURRENT_VERSION" >> $GITHUB_OUTPUT
41
-
44
+
42
45
  - name: Calculate new version
43
46
  id: new-version
44
47
  run: |
45
48
  CURRENT_VERSION="${{ steps.current-version.outputs.current_version }}"
46
49
  VERSION_TYPE="${{ inputs.version_type }}"
47
-
50
+
48
51
  IFS='.' read -r major minor patch <<< "$CURRENT_VERSION"
49
-
52
+
50
53
  case "$VERSION_TYPE" in
51
54
  major)
52
55
  major=$((major + 1))
@@ -61,59 +64,76 @@ jobs:
61
64
  patch=$((patch + 1))
62
65
  ;;
63
66
  esac
64
-
67
+
65
68
  NEW_VERSION="${major}.${minor}.${patch}"
66
69
  BRANCH_NAME="release/${NEW_VERSION}"
67
-
70
+
68
71
  echo "new_version=$NEW_VERSION" >> $GITHUB_OUTPUT
69
72
  echo "branch_name=$BRANCH_NAME" >> $GITHUB_OUTPUT
70
-
73
+
71
74
  - name: Configure Git
72
75
  run: |
73
76
  git config user.name "github-actions[bot]"
74
77
  git config user.email "github-actions[bot]@users.noreply.github.com"
75
-
78
+
76
79
  - name: Update main branch version
77
80
  run: |
78
81
  CURRENT_VERSION="${{ steps.current-version.outputs.current_version }}"
79
82
  NEW_VERSION="${{ steps.new-version.outputs.new_version }}"
80
-
83
+
81
84
  echo "Updating main branch version from $CURRENT_VERSION to $NEW_VERSION"
82
-
85
+
83
86
  # Update version in pyproject.toml
84
87
  sed -i "s/^version = \"$CURRENT_VERSION\"/version = \"$NEW_VERSION\"/" pyproject.toml
85
-
88
+
86
89
  # Update lock file
87
90
  uv sync --all-extras
88
-
91
+
89
92
  # Commit and push to main
90
93
  git add pyproject.toml
91
- git commit -m "Bump version from $CURRENT_VERSION to $NEW_VERSION"
94
+ git commit -m "Release v$NEW_VERSION"
92
95
  git push origin main
93
-
96
+
94
97
  - name: Create release branch
95
98
  run: |
96
99
  BRANCH_NAME="${{ steps.new-version.outputs.branch_name }}"
97
-
100
+
98
101
  echo "Creating release branch: $BRANCH_NAME"
99
-
102
+
100
103
  # Create new branch from updated main
101
104
  git checkout -b "$BRANCH_NAME"
102
-
105
+
103
106
  # Push the release branch
104
107
  git push origin "$BRANCH_NAME"
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
- echo "Monitor the publish workflow: [View Workflows](https://github.com/RoboFinSystems/robosystems-python-client/actions/workflows/publish.yml)" >> $GITHUB_STEP_SUMMARY
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,142 @@
1
+ {
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "label": "Generate SDK",
6
+ "type": "shell",
7
+ "command": "just generate-sdk ${input:apiUrl}",
8
+ "problemMatcher": []
9
+ },
10
+ {
11
+ "label": "Setup Environment",
12
+ "type": "shell",
13
+ "command": "just venv",
14
+ "problemMatcher": []
15
+ },
16
+ {
17
+ "label": "Install Dependencies",
18
+ "type": "shell",
19
+ "command": "just install",
20
+ "problemMatcher": []
21
+ },
22
+ {
23
+ "label": "Update Dependencies",
24
+ "type": "shell",
25
+ "command": "just update",
26
+ "problemMatcher": []
27
+ },
28
+ {
29
+ "label": "Test",
30
+ "type": "shell",
31
+ "command": "just test",
32
+ "problemMatcher": []
33
+ },
34
+ {
35
+ "label": "Test All",
36
+ "type": "shell",
37
+ "command": "just test-all",
38
+ "problemMatcher": []
39
+ },
40
+ {
41
+ "label": "Test Coverage",
42
+ "type": "shell",
43
+ "command": "just test-cov",
44
+ "problemMatcher": []
45
+ },
46
+ {
47
+ "label": "Lint",
48
+ "type": "shell",
49
+ "command": "just lint",
50
+ "problemMatcher": []
51
+ },
52
+ {
53
+ "label": "Format",
54
+ "type": "shell",
55
+ "command": "just format",
56
+ "problemMatcher": []
57
+ },
58
+ {
59
+ "label": "Type Check",
60
+ "type": "shell",
61
+ "command": "just typecheck",
62
+ "problemMatcher": []
63
+ },
64
+ {
65
+ "label": "Clean",
66
+ "type": "shell",
67
+ "command": "just clean",
68
+ "problemMatcher": []
69
+ },
70
+ {
71
+ "label": "Build Package",
72
+ "type": "shell",
73
+ "command": "just build-package",
74
+ "problemMatcher": []
75
+ },
76
+ {
77
+ "label": "Create Feature",
78
+ "type": "shell",
79
+ "command": "just create-feature ${input:branchType} ${input:branchName} ${input:baseBranch}",
80
+ "problemMatcher": []
81
+ },
82
+ {
83
+ "label": "Create PR",
84
+ "type": "shell",
85
+ "command": "just create-pr ${input:targetBranch} ${input:claudeReview}",
86
+ "problemMatcher": []
87
+ },
88
+ {
89
+ "label": "Create Release",
90
+ "type": "shell",
91
+ "command": "just create-release ${input:versionType}",
92
+ "problemMatcher": []
93
+ },
94
+ ],
95
+ "inputs": [
96
+ {
97
+ "id": "versionType",
98
+ "type": "pickString",
99
+ "description": "Choose version type:",
100
+ "default": "patch",
101
+ "options": ["major", "minor", "patch"]
102
+ },
103
+ {
104
+ "id": "branchType",
105
+ "type": "pickString",
106
+ "description": "Choose branch type:",
107
+ "default": "feature",
108
+ "options": ["feature", "bugfix", "hotfix", "chore", "refactor"]
109
+ },
110
+ {
111
+ "id": "branchName",
112
+ "type": "promptString",
113
+ "description": "Enter branch name (will be prefixed with type/):",
114
+ "default": ""
115
+ },
116
+ {
117
+ "id": "baseBranch",
118
+ "type": "promptString",
119
+ "description": "Enter base branch (default: main):",
120
+ "default": "main"
121
+ },
122
+ {
123
+ "id": "targetBranch",
124
+ "type": "promptString",
125
+ "description": "Choose target branch:",
126
+ "default": "main"
127
+ },
128
+ {
129
+ "id": "claudeReview",
130
+ "type": "pickString",
131
+ "description": "Request Claude review automatically:",
132
+ "default": "true",
133
+ "options": ["true", "false"]
134
+ },
135
+ {
136
+ "id": "apiUrl",
137
+ "type": "promptString",
138
+ "description": "Enter API URL for SDK generation:",
139
+ "default": "http://localhost:8000/openapi.json"
140
+ }
141
+ ]
142
+ }
@@ -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.17
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