robosystems-client 0.2.3__tar.gz → 0.2.5__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.
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/.github/workflows/test.yml +4 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/PKG-INFO +2 -4
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/README.md +0 -2
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/justfile +2 -1
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/pyproject.toml +6 -4
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/agent/auto_select_agent.py +1 -41
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/agent/batch_process_queries.py +1 -41
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/agent/execute_specific_agent.py +1 -41
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/agent/get_agent_metadata.py +5 -49
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/agent/list_agents.py +4 -42
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/agent/recommend_agent.py +5 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/generate_sso_token.py +0 -18
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/get_current_auth_user.py +14 -74
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/logout_user.py +14 -50
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/refresh_auth_session.py +14 -50
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/resend_verification_email.py +14 -74
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/backup/create_backup.py +5 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/backup/get_backup_download_url.py +4 -42
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/backup/get_backup_stats.py +5 -49
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/backup/list_backups.py +4 -42
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/backup/restore_backup.py +5 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/connections/create_connection.py +5 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/connections/create_link_token.py +5 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/connections/delete_connection.py +5 -49
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/connections/exchange_link_token.py +5 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/connections/get_connection.py +5 -49
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/connections/get_connection_options.py +5 -49
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/connections/init_o_auth.py +5 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/connections/list_connections.py +4 -42
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/connections/oauth_callback.py +5 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/connections/sync_connection.py +5 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_analytics/get_graph_metrics.py +5 -49
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_analytics/get_graph_usage_stats.py +4 -42
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_billing/get_current_graph_bill.py +5 -49
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_billing/get_graph_billing_history.py +4 -42
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_billing/get_graph_monthly_bill.py +5 -49
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_billing/get_graph_usage_details.py +4 -42
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_credits/check_credit_balance.py +0 -38
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_credits/check_storage_limits.py +1 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_credits/get_credit_summary.py +1 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_credits/get_storage_usage.py +0 -38
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_credits/list_credit_transactions.py +4 -42
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_health/get_database_health.py +5 -49
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_info/get_database_info.py +5 -49
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_limits/get_graph_limits.py +5 -49
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graphs/create_graph.py +21 -57
- robosystems_client-0.2.5/robosystems_client/api/graphs/get_available_extensions.py +251 -0
- robosystems_client-0.2.5/robosystems_client/api/graphs/get_graphs.py +271 -0
- robosystems_client-0.2.5/robosystems_client/api/graphs/select_graph.py +293 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/mcp/call_mcp_tool.py +24 -47
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/mcp/list_mcp_tools.py +13 -61
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/operations/cancel_operation.py +1 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/operations/get_operation_status.py +1 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/query/execute_cypher_query.py +69 -53
- robosystems_client-0.2.5/robosystems_client/api/schema/export_graph_schema.py +401 -0
- robosystems_client-0.2.5/robosystems_client/api/schema/get_graph_schema.py +317 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/schema/validate_schema.py +5 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/subgraphs/create_subgraph.py +5 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/subgraphs/delete_subgraph.py +5 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/subgraphs/get_subgraph_info.py +5 -49
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/subgraphs/get_subgraph_quota.py +5 -49
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/subgraphs/list_subgraphs.py +5 -49
- robosystems_client-0.2.5/robosystems_client/api/tables/delete_file.py +317 -0
- robosystems_client-0.2.5/robosystems_client/api/tables/get_file_info.py +249 -0
- robosystems_client-0.2.5/robosystems_client/api/tables/get_upload_url.py +352 -0
- robosystems_client-0.2.5/robosystems_client/api/tables/ingest_tables.py +428 -0
- robosystems_client-0.2.5/robosystems_client/api/tables/list_table_files.py +329 -0
- robosystems_client-0.2.5/robosystems_client/api/tables/list_tables.py +316 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/tables/query_tables.py +85 -141
- robosystems_client-0.2.5/robosystems_client/api/tables/update_file_status.py +395 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user/create_user_api_key.py +1 -41
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user/get_all_credit_summaries.py +14 -111
- robosystems_client-0.2.3/robosystems_client/api/graphs/get_available_extensions.py → robosystems_client-0.2.5/robosystems_client/api/user/get_current_user.py +21 -21
- robosystems_client-0.2.5/robosystems_client/api/user/list_user_api_keys.py +135 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user/revoke_user_api_key.py +1 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user/update_user.py +1 -41
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user/update_user_api_key.py +1 -41
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user/update_user_password.py +1 -41
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user_analytics/get_detailed_user_analytics.py +0 -38
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user_analytics/get_user_usage_overview.py +14 -75
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user_limits/get_all_shared_repository_limits.py +14 -105
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user_limits/get_shared_repository_limits.py +1 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user_limits/get_user_limits.py +14 -75
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user_limits/get_user_usage.py +14 -75
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py +1 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user_subscriptions/get_repository_credits.py +1 -45
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user_subscriptions/get_shared_repository_credits.py +14 -75
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py +0 -38
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py +1 -41
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py +1 -41
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/__init__.py +8 -1
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/auth_integration.py +1 -2
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/query_client.py +3 -2
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/sse_client.py +1 -1
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/table_ingest_client.py +5 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/utils.py +2 -2
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/__init__.py +4 -4
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/auth_response.py +40 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/create_graph_request.py +4 -3
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/cypher_query_request.py +5 -22
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/schema_export_response.py +4 -2
- robosystems_client-0.2.5/robosystems_client/models/schema_info_response.py +77 -0
- robosystems_client-0.2.5/robosystems_client/models/schema_info_response_schema.py +44 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/schema_validation_response.py +7 -6
- robosystems_client-0.2.5/robosystems_client/models/table_query_request.py +75 -0
- robosystems_client-0.2.3/examples/README.md +0 -272
- robosystems_client-0.2.3/examples/basic_query.py +0 -99
- robosystems_client-0.2.3/examples/e2e_workflow.py +0 -445
- robosystems_client-0.2.3/robosystems_client/api/graphs/get_graphs.py +0 -196
- robosystems_client-0.2.3/robosystems_client/api/graphs/select_graph.py +0 -225
- robosystems_client-0.2.3/robosystems_client/api/schema/export_graph_schema.py +0 -243
- robosystems_client-0.2.3/robosystems_client/api/schema/get_graph_schema.py +0 -259
- robosystems_client-0.2.3/robosystems_client/api/tables/delete_file.py +0 -437
- robosystems_client-0.2.3/robosystems_client/api/tables/get_file_info.py +0 -397
- robosystems_client-0.2.3/robosystems_client/api/tables/get_upload_url.py +0 -548
- robosystems_client-0.2.3/robosystems_client/api/tables/ingest_tables.py +0 -616
- robosystems_client-0.2.3/robosystems_client/api/tables/list_table_files.py +0 -509
- robosystems_client-0.2.3/robosystems_client/api/tables/list_tables.py +0 -488
- robosystems_client-0.2.3/robosystems_client/api/tables/update_file_status.py +0 -539
- robosystems_client-0.2.3/robosystems_client/api/user/get_current_user.py +0 -196
- robosystems_client-0.2.3/robosystems_client/api/user/list_user_api_keys.py +0 -196
- robosystems_client-0.2.3/robosystems_client/models/get_graph_schema_response_getgraphschema.py +0 -44
- robosystems_client-0.2.3/robosystems_client/models/table_query_request.py +0 -40
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/.github/workflows/claude.yml +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/.github/workflows/create-pr.yml +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/.github/workflows/create-release.yml +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/.github/workflows/publish.yml +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/.github/workflows/tag-release.yml +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/.gitignore +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/.vscode/settings.json +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/.vscode/tasks.json +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/LICENSE +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/bin/create-feature +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/bin/create-pr +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/bin/create-release +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/pytest.ini +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/agent/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/check_password_strength.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/complete_sso_auth.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/forgot_password.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/get_captcha_config.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/get_password_policy.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/login_user.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/register_user.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/reset_password.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/sso_token_exchange.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/validate_reset_token.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/auth/verify_email.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/backup/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/connections/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_analytics/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_billing/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_credits/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_health/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_info/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graph_limits/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/graphs/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/mcp/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/operations/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/operations/stream_operation_events.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/query/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/schema/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/service_offerings/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/service_offerings/get_service_offerings.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/status/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/status/get_service_status.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/subgraphs/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/tables/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user_analytics/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user_limits/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/api/user_subscriptions/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/client.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/errors.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/README.md +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/dataframe_utils.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/extensions.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/graph_client.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/operation_client.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/tests/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/tests/test_dataframe_utils.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/tests/test_integration.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/tests/test_token_utils.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/tests/test_unit.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/extensions/token_utils.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/account_info.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/add_on_credit_info.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_list_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_list_response_agents.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_list_response_agents_additional_property.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_message.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_metadata_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_mode.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_recommendation.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_recommendation_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_recommendation_request_context_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_recommendation_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_request_context_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_response_error_details_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_response_metadata_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/agent_response_tokens_used_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/api_key_info.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/api_keys_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/auth_response_user.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/available_extension.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/available_extensions_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/backup_create_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/backup_list_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/backup_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/backup_restore_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/backup_stats_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/backup_stats_response_backup_formats.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/batch_agent_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/batch_agent_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/bulk_ingest_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/bulk_ingest_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/cancel_operation_response_canceloperation.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/cancellation_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/check_credit_balance_response_checkcreditbalance.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/connection_options_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/connection_provider_info.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/connection_provider_info_auth_type.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/connection_provider_info_provider.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/connection_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/connection_response_metadata.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/connection_response_provider.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/create_api_key_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/create_api_key_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/create_connection_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/create_connection_request_provider.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/create_subgraph_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/create_subgraph_request_metadata_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/credit_summary.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/credit_summary_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/credits_summary_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/credits_summary_response_credits_by_addon_type_0_item.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/custom_schema_definition.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/custom_schema_definition_metadata.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/custom_schema_definition_nodes_item.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/custom_schema_definition_relationships_item.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/cypher_query_request_parameters_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/database_health_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/database_info_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/delete_file_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/delete_subgraph_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/delete_subgraph_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/detailed_transactions_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/detailed_transactions_response_date_range.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/detailed_transactions_response_summary.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/email_verification_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/enhanced_credit_transaction_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/enhanced_credit_transaction_response_metadata.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/error_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/exchange_token_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/exchange_token_request_metadata_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/file_info.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/file_status_update.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/file_upload_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/file_upload_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/forgot_password_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/forgot_password_response_forgotpassword.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/get_all_credit_summaries_response_getallcreditsummaries.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/get_all_shared_repository_limits_response_getallsharedrepositorylimits.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/get_backup_download_url_response_getbackupdownloadurl.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/get_current_auth_user_response_getcurrentauthuser.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/get_current_graph_bill_response_getcurrentgraphbill.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/get_file_info_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/get_graph_billing_history_response_getgraphbillinghistory.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/get_graph_limits_response_getgraphlimits.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/get_graph_monthly_bill_response_getgraphmonthlybill.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/get_graph_usage_details_response_getgraphusagedetails.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/get_operation_status_response_getoperationstatus.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/get_shared_repository_limits_response_getsharedrepositorylimits.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/get_storage_usage_response_getstorageusage.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/graph_info.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/graph_metadata.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/graph_metrics_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/graph_metrics_response_estimated_size.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/graph_metrics_response_health_status.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/graph_metrics_response_node_counts.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/graph_metrics_response_relationship_counts.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/graph_usage_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/graph_usage_response_query_statistics.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/graph_usage_response_recent_activity.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/graph_usage_response_storage_usage.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/health_status.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/health_status_details_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/http_validation_error.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/initial_entity_data.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/link_token_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/link_token_request_options_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/link_token_request_provider_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/list_connections_provider_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/list_subgraphs_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/list_table_files_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/login_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/logout_user_response_logoutuser.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/mcp_tool_call.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/mcp_tool_call_arguments.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/mcp_tools_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/mcp_tools_response_tools_item.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/o_auth_callback_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/o_auth_init_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/o_auth_init_request_additional_params_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/o_auth_init_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/password_check_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/password_check_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/password_check_response_character_types.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/password_policy_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/password_policy_response_policy.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/plaid_connection_config.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/plaid_connection_config_accounts_type_0_item.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/plaid_connection_config_institution_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/quick_books_connection_config.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/register_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/repository_credits_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/repository_plan.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/repository_type.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/resend_verification_email_response_resendverificationemail.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/reset_password_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/reset_password_validate_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/response_mode.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/schema_export_response_data_stats_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/schema_export_response_schema_definition_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/schema_validation_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/schema_validation_request_schema_definition_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/schema_validation_response_compatibility_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/schema_validation_response_stats_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/sec_connection_config.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/selection_criteria.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/sso_complete_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/sso_exchange_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/sso_exchange_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/sso_token_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/storage_limit_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/subgraph_quota_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/subgraph_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/subgraph_response_metadata_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/subgraph_summary.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/subgraph_type.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/subscription_info.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/subscription_info_metadata.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/subscription_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/subscription_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/success_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/success_response_data_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/sync_connection_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/sync_connection_request_sync_options_type_0.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/sync_connection_response_syncconnection.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/table_info.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/table_ingest_result.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/table_list_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/table_query_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/tier_upgrade_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/transaction_summary_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/update_api_key_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/update_file_status_response_updatefilestatus.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/update_password_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/update_user_request.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/user_analytics_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/user_analytics_response_api_usage.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/user_analytics_response_graph_usage.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/user_analytics_response_limits.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/user_analytics_response_recent_activity_item.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/user_analytics_response_user_info.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/user_graph_summary.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/user_graphs_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/user_limits_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/user_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/user_subscriptions_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/user_usage_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/user_usage_response_graphs.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/user_usage_summary_response.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/user_usage_summary_response_usage_vs_limits.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/models/validation_error.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/py.typed +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/sdk-config.yaml +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/robosystems_client/types.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/ruff.toml +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/tests/__init__.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/tests/conftest.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/tests/test_client.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/tests/test_extensions.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/tests/test_graph_client.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/tests/test_operation_client.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/tests/test_query_client.py +0 -0
- {robosystems_client-0.2.3 → robosystems_client-0.2.5}/tests/test_table_ingest_client.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robosystems-client
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: Python Client for RoboSystems financial graph database API
|
|
5
5
|
Author: RFS LLC
|
|
6
6
|
License: MIT
|
|
@@ -35,9 +35,9 @@ Provides-Extra: all
|
|
|
35
35
|
Requires-Dist: pandas>=1.5.0; extra == 'all'
|
|
36
36
|
Requires-Dist: pyarrow>=10.0.0; extra == 'all'
|
|
37
37
|
Provides-Extra: dev
|
|
38
|
+
Requires-Dist: basedpyright>=1.21.0; extra == 'dev'
|
|
38
39
|
Requires-Dist: build>=1.0.0; extra == 'dev'
|
|
39
40
|
Requires-Dist: openapi-python-client>=0.21.8; extra == 'dev'
|
|
40
|
-
Requires-Dist: pyright>=1.1.402; extra == 'dev'
|
|
41
41
|
Requires-Dist: pytest-asyncio>=0.26.0; extra == 'dev'
|
|
42
42
|
Requires-Dist: pytest-httpx>=0.30.0; extra == 'dev'
|
|
43
43
|
Requires-Dist: pytest>=8.3.5; extra == 'dev'
|
|
@@ -80,8 +80,6 @@ pip install robosystems-client[tables]
|
|
|
80
80
|
pip install robosystems-client[all]
|
|
81
81
|
```
|
|
82
82
|
|
|
83
|
-
See the [examples](./examples) directory for usage guides.
|
|
84
|
-
|
|
85
83
|
## API Reference
|
|
86
84
|
|
|
87
85
|
- [API reference](https://api.robosystems.ai)
|
|
@@ -28,6 +28,7 @@ test-all:
|
|
|
28
28
|
@just test
|
|
29
29
|
@just lint
|
|
30
30
|
@just format
|
|
31
|
+
@just typecheck
|
|
31
32
|
|
|
32
33
|
# Run linting
|
|
33
34
|
lint:
|
|
@@ -40,7 +41,7 @@ format:
|
|
|
40
41
|
|
|
41
42
|
# Run type checking
|
|
42
43
|
typecheck:
|
|
43
|
-
uv run
|
|
44
|
+
uv run basedpyright
|
|
44
45
|
|
|
45
46
|
# Generate SDK from localhost API
|
|
46
47
|
generate-sdk url="http://localhost:8000/openapi.json":
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "robosystems-client"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.5"
|
|
4
4
|
description = "Python Client for RoboSystems financial graph database API"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -41,7 +41,7 @@ dependencies = [
|
|
|
41
41
|
[project.optional-dependencies]
|
|
42
42
|
dev = [
|
|
43
43
|
"openapi-python-client>=0.21.8",
|
|
44
|
-
"
|
|
44
|
+
"basedpyright>=1.21.0",
|
|
45
45
|
"pytest-asyncio>=0.26.0",
|
|
46
46
|
"pytest>=8.3.5",
|
|
47
47
|
"ruff>=0.12",
|
|
@@ -73,8 +73,8 @@ build-backend = "hatchling.build"
|
|
|
73
73
|
packages = ["robosystems_client"]
|
|
74
74
|
|
|
75
75
|
[tool.basedpyright]
|
|
76
|
-
include = []
|
|
77
|
-
exclude = ["
|
|
76
|
+
include = ["robosystems_client/extensions"]
|
|
77
|
+
exclude = ["robosystems_client/extensions/tests"]
|
|
78
78
|
extraPaths = ["."]
|
|
79
79
|
pythonVersion = "3.12"
|
|
80
80
|
venvPath = "."
|
|
@@ -85,3 +85,5 @@ reportArgumentType = "none"
|
|
|
85
85
|
reportGeneralTypeIssues = "none"
|
|
86
86
|
reportOptionalMemberAccess = "none"
|
|
87
87
|
reportReturnType = "none"
|
|
88
|
+
reportInvalidTypeForm = "none"
|
|
89
|
+
reportMissingImports = "none"
|
|
@@ -9,35 +9,19 @@ from ...models.agent_request import AgentRequest
|
|
|
9
9
|
from ...models.agent_response import AgentResponse
|
|
10
10
|
from ...models.error_response import ErrorResponse
|
|
11
11
|
from ...models.http_validation_error import HTTPValidationError
|
|
12
|
-
from ...types import
|
|
12
|
+
from ...types import Response
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
def _get_kwargs(
|
|
16
16
|
graph_id: str,
|
|
17
17
|
*,
|
|
18
18
|
body: AgentRequest,
|
|
19
|
-
token: Union[None, Unset, str] = UNSET,
|
|
20
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
21
19
|
) -> dict[str, Any]:
|
|
22
20
|
headers: dict[str, Any] = {}
|
|
23
|
-
if not isinstance(authorization, Unset):
|
|
24
|
-
headers["authorization"] = authorization
|
|
25
|
-
|
|
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}
|
|
36
21
|
|
|
37
22
|
_kwargs: dict[str, Any] = {
|
|
38
23
|
"method": "post",
|
|
39
24
|
"url": f"/v1/graphs/{graph_id}/agent",
|
|
40
|
-
"params": params,
|
|
41
25
|
}
|
|
42
26
|
|
|
43
27
|
_kwargs["json"] = body.to_dict()
|
|
@@ -100,8 +84,6 @@ def sync_detailed(
|
|
|
100
84
|
*,
|
|
101
85
|
client: AuthenticatedClient,
|
|
102
86
|
body: AgentRequest,
|
|
103
|
-
token: Union[None, Unset, str] = UNSET,
|
|
104
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
105
87
|
) -> Response[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
|
|
106
88
|
"""Auto-select agent for query
|
|
107
89
|
|
|
@@ -117,8 +99,6 @@ def sync_detailed(
|
|
|
117
99
|
|
|
118
100
|
Args:
|
|
119
101
|
graph_id (str):
|
|
120
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
121
|
-
authorization (Union[None, Unset, str]):
|
|
122
102
|
body (AgentRequest): Request model for agent interactions.
|
|
123
103
|
|
|
124
104
|
Raises:
|
|
@@ -132,8 +112,6 @@ def sync_detailed(
|
|
|
132
112
|
kwargs = _get_kwargs(
|
|
133
113
|
graph_id=graph_id,
|
|
134
114
|
body=body,
|
|
135
|
-
token=token,
|
|
136
|
-
authorization=authorization,
|
|
137
115
|
)
|
|
138
116
|
|
|
139
117
|
response = client.get_httpx_client().request(
|
|
@@ -148,8 +126,6 @@ def sync(
|
|
|
148
126
|
*,
|
|
149
127
|
client: AuthenticatedClient,
|
|
150
128
|
body: AgentRequest,
|
|
151
|
-
token: Union[None, Unset, str] = UNSET,
|
|
152
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
153
129
|
) -> Optional[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
|
|
154
130
|
"""Auto-select agent for query
|
|
155
131
|
|
|
@@ -165,8 +141,6 @@ def sync(
|
|
|
165
141
|
|
|
166
142
|
Args:
|
|
167
143
|
graph_id (str):
|
|
168
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
169
|
-
authorization (Union[None, Unset, str]):
|
|
170
144
|
body (AgentRequest): Request model for agent interactions.
|
|
171
145
|
|
|
172
146
|
Raises:
|
|
@@ -181,8 +155,6 @@ def sync(
|
|
|
181
155
|
graph_id=graph_id,
|
|
182
156
|
client=client,
|
|
183
157
|
body=body,
|
|
184
|
-
token=token,
|
|
185
|
-
authorization=authorization,
|
|
186
158
|
).parsed
|
|
187
159
|
|
|
188
160
|
|
|
@@ -191,8 +163,6 @@ async def asyncio_detailed(
|
|
|
191
163
|
*,
|
|
192
164
|
client: AuthenticatedClient,
|
|
193
165
|
body: AgentRequest,
|
|
194
|
-
token: Union[None, Unset, str] = UNSET,
|
|
195
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
196
166
|
) -> Response[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
|
|
197
167
|
"""Auto-select agent for query
|
|
198
168
|
|
|
@@ -208,8 +178,6 @@ async def asyncio_detailed(
|
|
|
208
178
|
|
|
209
179
|
Args:
|
|
210
180
|
graph_id (str):
|
|
211
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
212
|
-
authorization (Union[None, Unset, str]):
|
|
213
181
|
body (AgentRequest): Request model for agent interactions.
|
|
214
182
|
|
|
215
183
|
Raises:
|
|
@@ -223,8 +191,6 @@ async def asyncio_detailed(
|
|
|
223
191
|
kwargs = _get_kwargs(
|
|
224
192
|
graph_id=graph_id,
|
|
225
193
|
body=body,
|
|
226
|
-
token=token,
|
|
227
|
-
authorization=authorization,
|
|
228
194
|
)
|
|
229
195
|
|
|
230
196
|
response = await client.get_async_httpx_client().request(**kwargs)
|
|
@@ -237,8 +203,6 @@ async def asyncio(
|
|
|
237
203
|
*,
|
|
238
204
|
client: AuthenticatedClient,
|
|
239
205
|
body: AgentRequest,
|
|
240
|
-
token: Union[None, Unset, str] = UNSET,
|
|
241
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
242
206
|
) -> Optional[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
|
|
243
207
|
"""Auto-select agent for query
|
|
244
208
|
|
|
@@ -254,8 +218,6 @@ async def asyncio(
|
|
|
254
218
|
|
|
255
219
|
Args:
|
|
256
220
|
graph_id (str):
|
|
257
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
258
|
-
authorization (Union[None, Unset, str]):
|
|
259
221
|
body (AgentRequest): Request model for agent interactions.
|
|
260
222
|
|
|
261
223
|
Raises:
|
|
@@ -271,7 +233,5 @@ async def asyncio(
|
|
|
271
233
|
graph_id=graph_id,
|
|
272
234
|
client=client,
|
|
273
235
|
body=body,
|
|
274
|
-
token=token,
|
|
275
|
-
authorization=authorization,
|
|
276
236
|
)
|
|
277
237
|
).parsed
|
|
@@ -8,35 +8,19 @@ from ...client import AuthenticatedClient, Client
|
|
|
8
8
|
from ...models.batch_agent_request import BatchAgentRequest
|
|
9
9
|
from ...models.batch_agent_response import BatchAgentResponse
|
|
10
10
|
from ...models.http_validation_error import HTTPValidationError
|
|
11
|
-
from ...types import
|
|
11
|
+
from ...types import Response
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
def _get_kwargs(
|
|
15
15
|
graph_id: str,
|
|
16
16
|
*,
|
|
17
17
|
body: BatchAgentRequest,
|
|
18
|
-
token: Union[None, Unset, str] = UNSET,
|
|
19
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
20
18
|
) -> dict[str, Any]:
|
|
21
19
|
headers: dict[str, Any] = {}
|
|
22
|
-
if not isinstance(authorization, Unset):
|
|
23
|
-
headers["authorization"] = authorization
|
|
24
|
-
|
|
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}
|
|
35
20
|
|
|
36
21
|
_kwargs: dict[str, Any] = {
|
|
37
22
|
"method": "post",
|
|
38
23
|
"url": f"/v1/graphs/{graph_id}/agent/batch",
|
|
39
|
-
"params": params,
|
|
40
24
|
}
|
|
41
25
|
|
|
42
26
|
_kwargs["json"] = body.to_dict()
|
|
@@ -94,8 +78,6 @@ def sync_detailed(
|
|
|
94
78
|
*,
|
|
95
79
|
client: AuthenticatedClient,
|
|
96
80
|
body: BatchAgentRequest,
|
|
97
|
-
token: Union[None, Unset, str] = UNSET,
|
|
98
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
99
81
|
) -> Response[Union[Any, BatchAgentResponse, HTTPValidationError]]:
|
|
100
82
|
"""Batch process multiple queries
|
|
101
83
|
|
|
@@ -116,8 +98,6 @@ def sync_detailed(
|
|
|
116
98
|
|
|
117
99
|
Args:
|
|
118
100
|
graph_id (str):
|
|
119
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
120
|
-
authorization (Union[None, Unset, str]):
|
|
121
101
|
body (BatchAgentRequest): Request for batch processing multiple queries.
|
|
122
102
|
|
|
123
103
|
Raises:
|
|
@@ -131,8 +111,6 @@ def sync_detailed(
|
|
|
131
111
|
kwargs = _get_kwargs(
|
|
132
112
|
graph_id=graph_id,
|
|
133
113
|
body=body,
|
|
134
|
-
token=token,
|
|
135
|
-
authorization=authorization,
|
|
136
114
|
)
|
|
137
115
|
|
|
138
116
|
response = client.get_httpx_client().request(
|
|
@@ -147,8 +125,6 @@ def sync(
|
|
|
147
125
|
*,
|
|
148
126
|
client: AuthenticatedClient,
|
|
149
127
|
body: BatchAgentRequest,
|
|
150
|
-
token: Union[None, Unset, str] = UNSET,
|
|
151
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
152
128
|
) -> Optional[Union[Any, BatchAgentResponse, HTTPValidationError]]:
|
|
153
129
|
"""Batch process multiple queries
|
|
154
130
|
|
|
@@ -169,8 +145,6 @@ def sync(
|
|
|
169
145
|
|
|
170
146
|
Args:
|
|
171
147
|
graph_id (str):
|
|
172
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
173
|
-
authorization (Union[None, Unset, str]):
|
|
174
148
|
body (BatchAgentRequest): Request for batch processing multiple queries.
|
|
175
149
|
|
|
176
150
|
Raises:
|
|
@@ -185,8 +159,6 @@ def sync(
|
|
|
185
159
|
graph_id=graph_id,
|
|
186
160
|
client=client,
|
|
187
161
|
body=body,
|
|
188
|
-
token=token,
|
|
189
|
-
authorization=authorization,
|
|
190
162
|
).parsed
|
|
191
163
|
|
|
192
164
|
|
|
@@ -195,8 +167,6 @@ async def asyncio_detailed(
|
|
|
195
167
|
*,
|
|
196
168
|
client: AuthenticatedClient,
|
|
197
169
|
body: BatchAgentRequest,
|
|
198
|
-
token: Union[None, Unset, str] = UNSET,
|
|
199
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
200
170
|
) -> Response[Union[Any, BatchAgentResponse, HTTPValidationError]]:
|
|
201
171
|
"""Batch process multiple queries
|
|
202
172
|
|
|
@@ -217,8 +187,6 @@ async def asyncio_detailed(
|
|
|
217
187
|
|
|
218
188
|
Args:
|
|
219
189
|
graph_id (str):
|
|
220
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
221
|
-
authorization (Union[None, Unset, str]):
|
|
222
190
|
body (BatchAgentRequest): Request for batch processing multiple queries.
|
|
223
191
|
|
|
224
192
|
Raises:
|
|
@@ -232,8 +200,6 @@ async def asyncio_detailed(
|
|
|
232
200
|
kwargs = _get_kwargs(
|
|
233
201
|
graph_id=graph_id,
|
|
234
202
|
body=body,
|
|
235
|
-
token=token,
|
|
236
|
-
authorization=authorization,
|
|
237
203
|
)
|
|
238
204
|
|
|
239
205
|
response = await client.get_async_httpx_client().request(**kwargs)
|
|
@@ -246,8 +212,6 @@ async def asyncio(
|
|
|
246
212
|
*,
|
|
247
213
|
client: AuthenticatedClient,
|
|
248
214
|
body: BatchAgentRequest,
|
|
249
|
-
token: Union[None, Unset, str] = UNSET,
|
|
250
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
251
215
|
) -> Optional[Union[Any, BatchAgentResponse, HTTPValidationError]]:
|
|
252
216
|
"""Batch process multiple queries
|
|
253
217
|
|
|
@@ -268,8 +232,6 @@ async def asyncio(
|
|
|
268
232
|
|
|
269
233
|
Args:
|
|
270
234
|
graph_id (str):
|
|
271
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
272
|
-
authorization (Union[None, Unset, str]):
|
|
273
235
|
body (BatchAgentRequest): Request for batch processing multiple queries.
|
|
274
236
|
|
|
275
237
|
Raises:
|
|
@@ -285,7 +247,5 @@ async def asyncio(
|
|
|
285
247
|
graph_id=graph_id,
|
|
286
248
|
client=client,
|
|
287
249
|
body=body,
|
|
288
|
-
token=token,
|
|
289
|
-
authorization=authorization,
|
|
290
250
|
)
|
|
291
251
|
).parsed
|
|
@@ -9,7 +9,7 @@ from ...models.agent_request import AgentRequest
|
|
|
9
9
|
from ...models.agent_response import AgentResponse
|
|
10
10
|
from ...models.error_response import ErrorResponse
|
|
11
11
|
from ...models.http_validation_error import HTTPValidationError
|
|
12
|
-
from ...types import
|
|
12
|
+
from ...types import Response
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
def _get_kwargs(
|
|
@@ -17,28 +17,12 @@ def _get_kwargs(
|
|
|
17
17
|
agent_type: str,
|
|
18
18
|
*,
|
|
19
19
|
body: AgentRequest,
|
|
20
|
-
token: Union[None, Unset, str] = UNSET,
|
|
21
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
22
20
|
) -> dict[str, Any]:
|
|
23
21
|
headers: dict[str, Any] = {}
|
|
24
|
-
if not isinstance(authorization, Unset):
|
|
25
|
-
headers["authorization"] = authorization
|
|
26
|
-
|
|
27
|
-
params: dict[str, Any] = {}
|
|
28
|
-
|
|
29
|
-
json_token: Union[None, Unset, str]
|
|
30
|
-
if isinstance(token, Unset):
|
|
31
|
-
json_token = UNSET
|
|
32
|
-
else:
|
|
33
|
-
json_token = token
|
|
34
|
-
params["token"] = json_token
|
|
35
|
-
|
|
36
|
-
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
37
22
|
|
|
38
23
|
_kwargs: dict[str, Any] = {
|
|
39
24
|
"method": "post",
|
|
40
25
|
"url": f"/v1/graphs/{graph_id}/agent/{agent_type}",
|
|
41
|
-
"params": params,
|
|
42
26
|
}
|
|
43
27
|
|
|
44
28
|
_kwargs["json"] = body.to_dict()
|
|
@@ -106,8 +90,6 @@ def sync_detailed(
|
|
|
106
90
|
*,
|
|
107
91
|
client: AuthenticatedClient,
|
|
108
92
|
body: AgentRequest,
|
|
109
|
-
token: Union[None, Unset, str] = UNSET,
|
|
110
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
111
93
|
) -> Response[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
|
|
112
94
|
"""Execute specific agent
|
|
113
95
|
|
|
@@ -123,8 +105,6 @@ def sync_detailed(
|
|
|
123
105
|
Args:
|
|
124
106
|
graph_id (str):
|
|
125
107
|
agent_type (str):
|
|
126
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
127
|
-
authorization (Union[None, Unset, str]):
|
|
128
108
|
body (AgentRequest): Request model for agent interactions.
|
|
129
109
|
|
|
130
110
|
Raises:
|
|
@@ -139,8 +119,6 @@ def sync_detailed(
|
|
|
139
119
|
graph_id=graph_id,
|
|
140
120
|
agent_type=agent_type,
|
|
141
121
|
body=body,
|
|
142
|
-
token=token,
|
|
143
|
-
authorization=authorization,
|
|
144
122
|
)
|
|
145
123
|
|
|
146
124
|
response = client.get_httpx_client().request(
|
|
@@ -156,8 +134,6 @@ def sync(
|
|
|
156
134
|
*,
|
|
157
135
|
client: AuthenticatedClient,
|
|
158
136
|
body: AgentRequest,
|
|
159
|
-
token: Union[None, Unset, str] = UNSET,
|
|
160
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
161
137
|
) -> Optional[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
|
|
162
138
|
"""Execute specific agent
|
|
163
139
|
|
|
@@ -173,8 +149,6 @@ def sync(
|
|
|
173
149
|
Args:
|
|
174
150
|
graph_id (str):
|
|
175
151
|
agent_type (str):
|
|
176
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
177
|
-
authorization (Union[None, Unset, str]):
|
|
178
152
|
body (AgentRequest): Request model for agent interactions.
|
|
179
153
|
|
|
180
154
|
Raises:
|
|
@@ -190,8 +164,6 @@ def sync(
|
|
|
190
164
|
agent_type=agent_type,
|
|
191
165
|
client=client,
|
|
192
166
|
body=body,
|
|
193
|
-
token=token,
|
|
194
|
-
authorization=authorization,
|
|
195
167
|
).parsed
|
|
196
168
|
|
|
197
169
|
|
|
@@ -201,8 +173,6 @@ async def asyncio_detailed(
|
|
|
201
173
|
*,
|
|
202
174
|
client: AuthenticatedClient,
|
|
203
175
|
body: AgentRequest,
|
|
204
|
-
token: Union[None, Unset, str] = UNSET,
|
|
205
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
206
176
|
) -> Response[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
|
|
207
177
|
"""Execute specific agent
|
|
208
178
|
|
|
@@ -218,8 +188,6 @@ async def asyncio_detailed(
|
|
|
218
188
|
Args:
|
|
219
189
|
graph_id (str):
|
|
220
190
|
agent_type (str):
|
|
221
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
222
|
-
authorization (Union[None, Unset, str]):
|
|
223
191
|
body (AgentRequest): Request model for agent interactions.
|
|
224
192
|
|
|
225
193
|
Raises:
|
|
@@ -234,8 +202,6 @@ async def asyncio_detailed(
|
|
|
234
202
|
graph_id=graph_id,
|
|
235
203
|
agent_type=agent_type,
|
|
236
204
|
body=body,
|
|
237
|
-
token=token,
|
|
238
|
-
authorization=authorization,
|
|
239
205
|
)
|
|
240
206
|
|
|
241
207
|
response = await client.get_async_httpx_client().request(**kwargs)
|
|
@@ -249,8 +215,6 @@ async def asyncio(
|
|
|
249
215
|
*,
|
|
250
216
|
client: AuthenticatedClient,
|
|
251
217
|
body: AgentRequest,
|
|
252
|
-
token: Union[None, Unset, str] = UNSET,
|
|
253
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
254
218
|
) -> Optional[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
|
|
255
219
|
"""Execute specific agent
|
|
256
220
|
|
|
@@ -266,8 +230,6 @@ async def asyncio(
|
|
|
266
230
|
Args:
|
|
267
231
|
graph_id (str):
|
|
268
232
|
agent_type (str):
|
|
269
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
270
|
-
authorization (Union[None, Unset, str]):
|
|
271
233
|
body (AgentRequest): Request model for agent interactions.
|
|
272
234
|
|
|
273
235
|
Raises:
|
|
@@ -284,7 +246,5 @@ async def asyncio(
|
|
|
284
246
|
agent_type=agent_type,
|
|
285
247
|
client=client,
|
|
286
248
|
body=body,
|
|
287
|
-
token=token,
|
|
288
|
-
authorization=authorization,
|
|
289
249
|
)
|
|
290
250
|
).parsed
|
|
@@ -7,38 +7,18 @@ from ... import errors
|
|
|
7
7
|
from ...client import AuthenticatedClient, Client
|
|
8
8
|
from ...models.agent_metadata_response import AgentMetadataResponse
|
|
9
9
|
from ...models.http_validation_error import HTTPValidationError
|
|
10
|
-
from ...types import
|
|
10
|
+
from ...types import Response
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
def _get_kwargs(
|
|
14
14
|
graph_id: str,
|
|
15
15
|
agent_type: str,
|
|
16
|
-
*,
|
|
17
|
-
token: Union[None, Unset, str] = UNSET,
|
|
18
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
19
16
|
) -> dict[str, Any]:
|
|
20
|
-
headers: dict[str, Any] = {}
|
|
21
|
-
if not isinstance(authorization, Unset):
|
|
22
|
-
headers["authorization"] = authorization
|
|
23
|
-
|
|
24
|
-
params: dict[str, Any] = {}
|
|
25
|
-
|
|
26
|
-
json_token: Union[None, Unset, str]
|
|
27
|
-
if isinstance(token, Unset):
|
|
28
|
-
json_token = UNSET
|
|
29
|
-
else:
|
|
30
|
-
json_token = token
|
|
31
|
-
params["token"] = json_token
|
|
32
|
-
|
|
33
|
-
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
34
|
-
|
|
35
17
|
_kwargs: dict[str, Any] = {
|
|
36
18
|
"method": "get",
|
|
37
19
|
"url": f"/v1/graphs/{graph_id}/agent/{agent_type}/metadata",
|
|
38
|
-
"params": params,
|
|
39
20
|
}
|
|
40
21
|
|
|
41
|
-
_kwargs["headers"] = headers
|
|
42
22
|
return _kwargs
|
|
43
23
|
|
|
44
24
|
|
|
@@ -81,8 +61,6 @@ def sync_detailed(
|
|
|
81
61
|
agent_type: str,
|
|
82
62
|
*,
|
|
83
63
|
client: AuthenticatedClient,
|
|
84
|
-
token: Union[None, Unset, str] = UNSET,
|
|
85
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
86
64
|
) -> Response[Union[AgentMetadataResponse, Any, HTTPValidationError]]:
|
|
87
65
|
"""Get agent metadata
|
|
88
66
|
|
|
@@ -99,10 +77,8 @@ def sync_detailed(
|
|
|
99
77
|
Use this to understand agent capabilities before execution.
|
|
100
78
|
|
|
101
79
|
Args:
|
|
102
|
-
graph_id (str):
|
|
80
|
+
graph_id (str):
|
|
103
81
|
agent_type (str): Agent type identifier (e.g., 'financial', 'research', 'rag')
|
|
104
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
105
|
-
authorization (Union[None, Unset, str]):
|
|
106
82
|
|
|
107
83
|
Raises:
|
|
108
84
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
@@ -115,8 +91,6 @@ def sync_detailed(
|
|
|
115
91
|
kwargs = _get_kwargs(
|
|
116
92
|
graph_id=graph_id,
|
|
117
93
|
agent_type=agent_type,
|
|
118
|
-
token=token,
|
|
119
|
-
authorization=authorization,
|
|
120
94
|
)
|
|
121
95
|
|
|
122
96
|
response = client.get_httpx_client().request(
|
|
@@ -131,8 +105,6 @@ def sync(
|
|
|
131
105
|
agent_type: str,
|
|
132
106
|
*,
|
|
133
107
|
client: AuthenticatedClient,
|
|
134
|
-
token: Union[None, Unset, str] = UNSET,
|
|
135
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
136
108
|
) -> Optional[Union[AgentMetadataResponse, Any, HTTPValidationError]]:
|
|
137
109
|
"""Get agent metadata
|
|
138
110
|
|
|
@@ -149,10 +121,8 @@ def sync(
|
|
|
149
121
|
Use this to understand agent capabilities before execution.
|
|
150
122
|
|
|
151
123
|
Args:
|
|
152
|
-
graph_id (str):
|
|
124
|
+
graph_id (str):
|
|
153
125
|
agent_type (str): Agent type identifier (e.g., 'financial', 'research', 'rag')
|
|
154
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
155
|
-
authorization (Union[None, Unset, str]):
|
|
156
126
|
|
|
157
127
|
Raises:
|
|
158
128
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
@@ -166,8 +136,6 @@ def sync(
|
|
|
166
136
|
graph_id=graph_id,
|
|
167
137
|
agent_type=agent_type,
|
|
168
138
|
client=client,
|
|
169
|
-
token=token,
|
|
170
|
-
authorization=authorization,
|
|
171
139
|
).parsed
|
|
172
140
|
|
|
173
141
|
|
|
@@ -176,8 +144,6 @@ async def asyncio_detailed(
|
|
|
176
144
|
agent_type: str,
|
|
177
145
|
*,
|
|
178
146
|
client: AuthenticatedClient,
|
|
179
|
-
token: Union[None, Unset, str] = UNSET,
|
|
180
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
181
147
|
) -> Response[Union[AgentMetadataResponse, Any, HTTPValidationError]]:
|
|
182
148
|
"""Get agent metadata
|
|
183
149
|
|
|
@@ -194,10 +160,8 @@ async def asyncio_detailed(
|
|
|
194
160
|
Use this to understand agent capabilities before execution.
|
|
195
161
|
|
|
196
162
|
Args:
|
|
197
|
-
graph_id (str):
|
|
163
|
+
graph_id (str):
|
|
198
164
|
agent_type (str): Agent type identifier (e.g., 'financial', 'research', 'rag')
|
|
199
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
200
|
-
authorization (Union[None, Unset, str]):
|
|
201
165
|
|
|
202
166
|
Raises:
|
|
203
167
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
@@ -210,8 +174,6 @@ async def asyncio_detailed(
|
|
|
210
174
|
kwargs = _get_kwargs(
|
|
211
175
|
graph_id=graph_id,
|
|
212
176
|
agent_type=agent_type,
|
|
213
|
-
token=token,
|
|
214
|
-
authorization=authorization,
|
|
215
177
|
)
|
|
216
178
|
|
|
217
179
|
response = await client.get_async_httpx_client().request(**kwargs)
|
|
@@ -224,8 +186,6 @@ async def asyncio(
|
|
|
224
186
|
agent_type: str,
|
|
225
187
|
*,
|
|
226
188
|
client: AuthenticatedClient,
|
|
227
|
-
token: Union[None, Unset, str] = UNSET,
|
|
228
|
-
authorization: Union[None, Unset, str] = UNSET,
|
|
229
189
|
) -> Optional[Union[AgentMetadataResponse, Any, HTTPValidationError]]:
|
|
230
190
|
"""Get agent metadata
|
|
231
191
|
|
|
@@ -242,10 +202,8 @@ async def asyncio(
|
|
|
242
202
|
Use this to understand agent capabilities before execution.
|
|
243
203
|
|
|
244
204
|
Args:
|
|
245
|
-
graph_id (str):
|
|
205
|
+
graph_id (str):
|
|
246
206
|
agent_type (str): Agent type identifier (e.g., 'financial', 'research', 'rag')
|
|
247
|
-
token (Union[None, Unset, str]): JWT token for SSE authentication
|
|
248
|
-
authorization (Union[None, Unset, str]):
|
|
249
207
|
|
|
250
208
|
Raises:
|
|
251
209
|
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
@@ -260,7 +218,5 @@ async def asyncio(
|
|
|
260
218
|
graph_id=graph_id,
|
|
261
219
|
agent_type=agent_type,
|
|
262
220
|
client=client,
|
|
263
|
-
token=token,
|
|
264
|
-
authorization=authorization,
|
|
265
221
|
)
|
|
266
222
|
).parsed
|