robosystems-client 0.1.10__py3-none-any.whl → 0.1.12__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- robosystems_client/api/agent/query_financial_agent.py +16 -16
- robosystems_client/api/backup/create_backup.py +0 -4
- robosystems_client/api/backup/export_backup.py +0 -3
- robosystems_client/api/backup/get_backup_download_url.py +1 -1
- robosystems_client/api/backup/restore_backup.py +0 -4
- robosystems_client/api/connections/create_connection.py +8 -20
- robosystems_client/api/connections/delete_connection.py +8 -16
- robosystems_client/api/connections/sync_connection.py +8 -20
- robosystems_client/api/create/get_available_extensions.py +1 -1
- robosystems_client/api/graph_analytics/get_graph_metrics.py +8 -16
- robosystems_client/api/graph_analytics/get_graph_usage_stats.py +8 -16
- robosystems_client/api/mcp/call_mcp_tool.py +8 -20
- robosystems_client/api/query/execute_cypher_query.py +28 -31
- robosystems_client/api/schema/get_graph_schema_info.py +4 -19
- robosystems_client/api/schema/validate_schema.py +4 -16
- robosystems_client/api/service_offerings/get_service_offerings.py +4 -4
- robosystems_client/api/subgraphs/__init__.py +1 -0
- robosystems_client/api/subgraphs/create_subgraph.py +372 -0
- robosystems_client/api/subgraphs/delete_subgraph.py +317 -0
- robosystems_client/api/subgraphs/get_subgraph_info.py +300 -0
- robosystems_client/api/subgraphs/get_subgraph_quota.py +272 -0
- robosystems_client/api/subgraphs/list_subgraphs.py +272 -0
- robosystems_client/api/user/select_user_graph.py +1 -1
- robosystems_client/api/user_limits/get_all_shared_repository_limits.py +223 -0
- robosystems_client/api/user_limits/get_shared_repository_limits.py +248 -0
- robosystems_client/api/user_subscriptions/get_repository_credits.py +18 -18
- robosystems_client/extensions/README.md +2 -6
- robosystems_client/extensions/__init__.py +1 -1
- robosystems_client/extensions/auth_integration.py +2 -2
- robosystems_client/extensions/extensions.py +1 -1
- robosystems_client/extensions/tests/__init__.py +1 -1
- robosystems_client/extensions/tests/test_integration.py +3 -3
- robosystems_client/extensions/tests/test_unit.py +5 -3
- robosystems_client/extensions/utils.py +1 -1
- robosystems_client/models/__init__.py +28 -2
- robosystems_client/models/create_graph_request.py +5 -25
- robosystems_client/models/create_subgraph_request.py +185 -0
- robosystems_client/models/create_subgraph_request_metadata_type_0.py +44 -0
- robosystems_client/models/credit_summary_response.py +0 -8
- robosystems_client/models/database_health_response.py +1 -1
- robosystems_client/models/database_info_response.py +2 -2
- robosystems_client/models/delete_subgraph_request.py +89 -0
- robosystems_client/models/delete_subgraph_response.py +120 -0
- robosystems_client/models/get_all_shared_repository_limits_response_getallsharedrepositorylimits.py +46 -0
- robosystems_client/models/get_shared_repository_limits_response_getsharedrepositorylimits.py +44 -0
- robosystems_client/models/list_subgraphs_response.py +148 -0
- robosystems_client/models/repository_credits_response.py +6 -6
- robosystems_client/models/schema_export_response.py +2 -2
- robosystems_client/models/subgraph_quota_response.py +158 -0
- robosystems_client/models/subgraph_response.py +279 -0
- robosystems_client/models/{get_mcp_health_response_getmcphealth.py → subgraph_response_metadata_type_0.py} +5 -5
- robosystems_client/models/subgraph_summary.py +155 -0
- robosystems_client/models/subgraph_type.py +11 -0
- robosystems_client/models/subscription_info.py +0 -28
- robosystems_client/models/subscription_request.py +0 -9
- robosystems_client/models/subscription_response.py +0 -8
- robosystems_client/sdk-config.yaml +1 -1
- {robosystems_client-0.1.10.dist-info → robosystems_client-0.1.12.dist-info}/METADATA +1 -1
- {robosystems_client-0.1.10.dist-info → robosystems_client-0.1.12.dist-info}/RECORD +60 -42
- robosystems_client/api/status/get_mcp_health.py +0 -136
- {robosystems_client-0.1.10.dist-info → robosystems_client-0.1.12.dist-info}/WHEEL +0 -0
|
@@ -137,10 +137,10 @@ def sync_detailed(
|
|
|
137
137
|
- Fallback to status polling endpoint if SSE unavailable
|
|
138
138
|
|
|
139
139
|
**Credit Consumption:**
|
|
140
|
-
-
|
|
141
|
-
-
|
|
142
|
-
-
|
|
143
|
-
-
|
|
140
|
+
- AI operations consume credits based on actual token usage
|
|
141
|
+
- Claude 4/4.1 Opus: ~15 credits per 1K input tokens, ~75 credits per 1K output tokens
|
|
142
|
+
- Claude 4 Sonnet: ~3 credits per 1K input tokens, ~15 credits per 1K output tokens
|
|
143
|
+
- Credits are consumed after operation completes based on actual usage
|
|
144
144
|
|
|
145
145
|
The agent automatically determines query complexity or you can force extended analysis.
|
|
146
146
|
|
|
@@ -224,10 +224,10 @@ def sync(
|
|
|
224
224
|
- Fallback to status polling endpoint if SSE unavailable
|
|
225
225
|
|
|
226
226
|
**Credit Consumption:**
|
|
227
|
-
-
|
|
228
|
-
-
|
|
229
|
-
-
|
|
230
|
-
-
|
|
227
|
+
- AI operations consume credits based on actual token usage
|
|
228
|
+
- Claude 4/4.1 Opus: ~15 credits per 1K input tokens, ~75 credits per 1K output tokens
|
|
229
|
+
- Claude 4 Sonnet: ~3 credits per 1K input tokens, ~15 credits per 1K output tokens
|
|
230
|
+
- Credits are consumed after operation completes based on actual usage
|
|
231
231
|
|
|
232
232
|
The agent automatically determines query complexity or you can force extended analysis.
|
|
233
233
|
|
|
@@ -306,10 +306,10 @@ async def asyncio_detailed(
|
|
|
306
306
|
- Fallback to status polling endpoint if SSE unavailable
|
|
307
307
|
|
|
308
308
|
**Credit Consumption:**
|
|
309
|
-
-
|
|
310
|
-
-
|
|
311
|
-
-
|
|
312
|
-
-
|
|
309
|
+
- AI operations consume credits based on actual token usage
|
|
310
|
+
- Claude 4/4.1 Opus: ~15 credits per 1K input tokens, ~75 credits per 1K output tokens
|
|
311
|
+
- Claude 4 Sonnet: ~3 credits per 1K input tokens, ~15 credits per 1K output tokens
|
|
312
|
+
- Credits are consumed after operation completes based on actual usage
|
|
313
313
|
|
|
314
314
|
The agent automatically determines query complexity or you can force extended analysis.
|
|
315
315
|
|
|
@@ -391,10 +391,10 @@ async def asyncio(
|
|
|
391
391
|
- Fallback to status polling endpoint if SSE unavailable
|
|
392
392
|
|
|
393
393
|
**Credit Consumption:**
|
|
394
|
-
-
|
|
395
|
-
-
|
|
396
|
-
-
|
|
397
|
-
-
|
|
394
|
+
- AI operations consume credits based on actual token usage
|
|
395
|
+
- Claude 4/4.1 Opus: ~15 credits per 1K input tokens, ~75 credits per 1K output tokens
|
|
396
|
+
- Claude 4 Sonnet: ~3 credits per 1K input tokens, ~15 credits per 1K output tokens
|
|
397
|
+
- Credits are consumed after operation completes based on actual usage
|
|
398
398
|
|
|
399
399
|
The agent automatically determines query complexity or you can force extended analysis.
|
|
400
400
|
|
|
@@ -50,10 +50,6 @@ def _parse_response(
|
|
|
50
50
|
response_400 = ErrorResponse.from_dict(response.json())
|
|
51
51
|
|
|
52
52
|
return response_400
|
|
53
|
-
if response.status_code == 402:
|
|
54
|
-
response_402 = ErrorResponse.from_dict(response.json())
|
|
55
|
-
|
|
56
|
-
return response_402
|
|
57
53
|
if response.status_code == 403:
|
|
58
54
|
response_403 = ErrorResponse.from_dict(response.json())
|
|
59
55
|
|
|
@@ -45,9 +45,6 @@ def _parse_response(
|
|
|
45
45
|
if response.status_code == 200:
|
|
46
46
|
response_200 = response.json()
|
|
47
47
|
return response_200
|
|
48
|
-
if response.status_code == 402:
|
|
49
|
-
response_402 = cast(Any, None)
|
|
50
|
-
return response_402
|
|
51
48
|
if response.status_code == 403:
|
|
52
49
|
response_403 = cast(Any, None)
|
|
53
50
|
return response_403
|
|
@@ -50,10 +50,6 @@ def _parse_response(
|
|
|
50
50
|
response_400 = ErrorResponse.from_dict(response.json())
|
|
51
51
|
|
|
52
52
|
return response_400
|
|
53
|
-
if response.status_code == 402:
|
|
54
|
-
response_402 = ErrorResponse.from_dict(response.json())
|
|
55
|
-
|
|
56
|
-
return response_402
|
|
57
53
|
if response.status_code == 403:
|
|
58
54
|
response_403 = ErrorResponse.from_dict(response.json())
|
|
59
55
|
|
|
@@ -52,10 +52,6 @@ def _parse_response(
|
|
|
52
52
|
response_400 = ErrorResponse.from_dict(response.json())
|
|
53
53
|
|
|
54
54
|
return response_400
|
|
55
|
-
if response.status_code == 402:
|
|
56
|
-
response_402 = ErrorResponse.from_dict(response.json())
|
|
57
|
-
|
|
58
|
-
return response_402
|
|
59
55
|
if response.status_code == 403:
|
|
60
56
|
response_403 = ErrorResponse.from_dict(response.json())
|
|
61
57
|
|
|
@@ -118,10 +114,8 @@ def sync_detailed(
|
|
|
118
114
|
- User completes bank authentication
|
|
119
115
|
- Exchange public token for access
|
|
120
116
|
|
|
121
|
-
|
|
122
|
-
-
|
|
123
|
-
- Multiplied by graph tier
|
|
124
|
-
- Additional credits consumed during data sync
|
|
117
|
+
Note:
|
|
118
|
+
This operation is FREE - no credit consumption required.
|
|
125
119
|
|
|
126
120
|
Args:
|
|
127
121
|
graph_id (str): Graph database identifier
|
|
@@ -180,10 +174,8 @@ def sync(
|
|
|
180
174
|
- User completes bank authentication
|
|
181
175
|
- Exchange public token for access
|
|
182
176
|
|
|
183
|
-
|
|
184
|
-
-
|
|
185
|
-
- Multiplied by graph tier
|
|
186
|
-
- Additional credits consumed during data sync
|
|
177
|
+
Note:
|
|
178
|
+
This operation is FREE - no credit consumption required.
|
|
187
179
|
|
|
188
180
|
Args:
|
|
189
181
|
graph_id (str): Graph database identifier
|
|
@@ -237,10 +229,8 @@ async def asyncio_detailed(
|
|
|
237
229
|
- User completes bank authentication
|
|
238
230
|
- Exchange public token for access
|
|
239
231
|
|
|
240
|
-
|
|
241
|
-
-
|
|
242
|
-
- Multiplied by graph tier
|
|
243
|
-
- Additional credits consumed during data sync
|
|
232
|
+
Note:
|
|
233
|
+
This operation is FREE - no credit consumption required.
|
|
244
234
|
|
|
245
235
|
Args:
|
|
246
236
|
graph_id (str): Graph database identifier
|
|
@@ -297,10 +287,8 @@ async def asyncio(
|
|
|
297
287
|
- User completes bank authentication
|
|
298
288
|
- Exchange public token for access
|
|
299
289
|
|
|
300
|
-
|
|
301
|
-
-
|
|
302
|
-
- Multiplied by graph tier
|
|
303
|
-
- Additional credits consumed during data sync
|
|
290
|
+
Note:
|
|
291
|
+
This operation is FREE - no credit consumption required.
|
|
304
292
|
|
|
305
293
|
Args:
|
|
306
294
|
graph_id (str): Graph database identifier
|
|
@@ -43,10 +43,6 @@ def _parse_response(
|
|
|
43
43
|
response_200 = SuccessResponse.from_dict(response.json())
|
|
44
44
|
|
|
45
45
|
return response_200
|
|
46
|
-
if response.status_code == 402:
|
|
47
|
-
response_402 = ErrorResponse.from_dict(response.json())
|
|
48
|
-
|
|
49
|
-
return response_402
|
|
50
46
|
if response.status_code == 403:
|
|
51
47
|
response_403 = ErrorResponse.from_dict(response.json())
|
|
52
48
|
|
|
@@ -98,9 +94,8 @@ def sync_detailed(
|
|
|
98
94
|
- Performs provider-specific cleanup
|
|
99
95
|
- Revokes stored credentials
|
|
100
96
|
|
|
101
|
-
|
|
102
|
-
-
|
|
103
|
-
- Multiplied by graph tier
|
|
97
|
+
Note:
|
|
98
|
+
This operation is FREE - no credit consumption required.
|
|
104
99
|
|
|
105
100
|
Only users with admin role can delete connections.
|
|
106
101
|
|
|
@@ -150,9 +145,8 @@ def sync(
|
|
|
150
145
|
- Performs provider-specific cleanup
|
|
151
146
|
- Revokes stored credentials
|
|
152
147
|
|
|
153
|
-
|
|
154
|
-
-
|
|
155
|
-
- Multiplied by graph tier
|
|
148
|
+
Note:
|
|
149
|
+
This operation is FREE - no credit consumption required.
|
|
156
150
|
|
|
157
151
|
Only users with admin role can delete connections.
|
|
158
152
|
|
|
@@ -197,9 +191,8 @@ async def asyncio_detailed(
|
|
|
197
191
|
- Performs provider-specific cleanup
|
|
198
192
|
- Revokes stored credentials
|
|
199
193
|
|
|
200
|
-
|
|
201
|
-
-
|
|
202
|
-
- Multiplied by graph tier
|
|
194
|
+
Note:
|
|
195
|
+
This operation is FREE - no credit consumption required.
|
|
203
196
|
|
|
204
197
|
Only users with admin role can delete connections.
|
|
205
198
|
|
|
@@ -247,9 +240,8 @@ async def asyncio(
|
|
|
247
240
|
- Performs provider-specific cleanup
|
|
248
241
|
- Revokes stored credentials
|
|
249
242
|
|
|
250
|
-
|
|
251
|
-
-
|
|
252
|
-
- Multiplied by graph tier
|
|
243
|
+
Note:
|
|
244
|
+
This operation is FREE - no credit consumption required.
|
|
253
245
|
|
|
254
246
|
Only users with admin role can delete connections.
|
|
255
247
|
|
|
@@ -53,10 +53,6 @@ def _parse_response(
|
|
|
53
53
|
response_200 = SyncConnectionResponseSyncconnection.from_dict(response.json())
|
|
54
54
|
|
|
55
55
|
return response_200
|
|
56
|
-
if response.status_code == 402:
|
|
57
|
-
response_402 = ErrorResponse.from_dict(response.json())
|
|
58
|
-
|
|
59
|
-
return response_402
|
|
60
56
|
if response.status_code == 403:
|
|
61
57
|
response_403 = ErrorResponse.from_dict(response.json())
|
|
62
58
|
|
|
@@ -125,10 +121,8 @@ def sync_detailed(
|
|
|
125
121
|
- Updates account balances
|
|
126
122
|
- Categorizes new transactions
|
|
127
123
|
|
|
128
|
-
|
|
129
|
-
-
|
|
130
|
-
- Multiplied by graph tier
|
|
131
|
-
- Additional credits may be consumed during processing
|
|
124
|
+
Note:
|
|
125
|
+
This operation is FREE - no credit consumption required.
|
|
132
126
|
|
|
133
127
|
Returns a task ID for monitoring sync progress.
|
|
134
128
|
|
|
@@ -195,10 +189,8 @@ def sync(
|
|
|
195
189
|
- Updates account balances
|
|
196
190
|
- Categorizes new transactions
|
|
197
191
|
|
|
198
|
-
|
|
199
|
-
-
|
|
200
|
-
- Multiplied by graph tier
|
|
201
|
-
- Additional credits may be consumed during processing
|
|
192
|
+
Note:
|
|
193
|
+
This operation is FREE - no credit consumption required.
|
|
202
194
|
|
|
203
195
|
Returns a task ID for monitoring sync progress.
|
|
204
196
|
|
|
@@ -260,10 +252,8 @@ async def asyncio_detailed(
|
|
|
260
252
|
- Updates account balances
|
|
261
253
|
- Categorizes new transactions
|
|
262
254
|
|
|
263
|
-
|
|
264
|
-
-
|
|
265
|
-
- Multiplied by graph tier
|
|
266
|
-
- Additional credits may be consumed during processing
|
|
255
|
+
Note:
|
|
256
|
+
This operation is FREE - no credit consumption required.
|
|
267
257
|
|
|
268
258
|
Returns a task ID for monitoring sync progress.
|
|
269
259
|
|
|
@@ -328,10 +318,8 @@ async def asyncio(
|
|
|
328
318
|
- Updates account balances
|
|
329
319
|
- Categorizes new transactions
|
|
330
320
|
|
|
331
|
-
|
|
332
|
-
-
|
|
333
|
-
- Multiplied by graph tier
|
|
334
|
-
- Additional credits may be consumed during processing
|
|
321
|
+
Note:
|
|
322
|
+
This operation is FREE - no credit consumption required.
|
|
335
323
|
|
|
336
324
|
Returns a task ID for monitoring sync progress.
|
|
337
325
|
|
|
@@ -42,10 +42,6 @@ def _parse_response(
|
|
|
42
42
|
response_200 = GraphMetricsResponse.from_dict(response.json())
|
|
43
43
|
|
|
44
44
|
return response_200
|
|
45
|
-
if response.status_code == 402:
|
|
46
|
-
response_402 = ErrorResponse.from_dict(response.json())
|
|
47
|
-
|
|
48
|
-
return response_402
|
|
49
45
|
if response.status_code == 403:
|
|
50
46
|
response_403 = ErrorResponse.from_dict(response.json())
|
|
51
47
|
|
|
@@ -103,9 +99,8 @@ def sync_detailed(
|
|
|
103
99
|
- Capacity planning
|
|
104
100
|
- Performance optimization
|
|
105
101
|
|
|
106
|
-
|
|
107
|
-
-
|
|
108
|
-
- Multiplied by graph tier (standard=1x, enterprise=2x, premium=4x)
|
|
102
|
+
Note:
|
|
103
|
+
This operation is FREE - no credit consumption required.
|
|
109
104
|
|
|
110
105
|
Args:
|
|
111
106
|
graph_id (str): The graph ID to get metrics for
|
|
@@ -157,9 +152,8 @@ def sync(
|
|
|
157
152
|
- Capacity planning
|
|
158
153
|
- Performance optimization
|
|
159
154
|
|
|
160
|
-
|
|
161
|
-
-
|
|
162
|
-
- Multiplied by graph tier (standard=1x, enterprise=2x, premium=4x)
|
|
155
|
+
Note:
|
|
156
|
+
This operation is FREE - no credit consumption required.
|
|
163
157
|
|
|
164
158
|
Args:
|
|
165
159
|
graph_id (str): The graph ID to get metrics for
|
|
@@ -206,9 +200,8 @@ async def asyncio_detailed(
|
|
|
206
200
|
- Capacity planning
|
|
207
201
|
- Performance optimization
|
|
208
202
|
|
|
209
|
-
|
|
210
|
-
-
|
|
211
|
-
- Multiplied by graph tier (standard=1x, enterprise=2x, premium=4x)
|
|
203
|
+
Note:
|
|
204
|
+
This operation is FREE - no credit consumption required.
|
|
212
205
|
|
|
213
206
|
Args:
|
|
214
207
|
graph_id (str): The graph ID to get metrics for
|
|
@@ -258,9 +251,8 @@ async def asyncio(
|
|
|
258
251
|
- Capacity planning
|
|
259
252
|
- Performance optimization
|
|
260
253
|
|
|
261
|
-
|
|
262
|
-
-
|
|
263
|
-
- Multiplied by graph tier (standard=1x, enterprise=2x, premium=4x)
|
|
254
|
+
Note:
|
|
255
|
+
This operation is FREE - no credit consumption required.
|
|
264
256
|
|
|
265
257
|
Args:
|
|
266
258
|
graph_id (str): The graph ID to get metrics for
|
|
@@ -50,10 +50,6 @@ def _parse_response(
|
|
|
50
50
|
response_200 = GraphUsageResponse.from_dict(response.json())
|
|
51
51
|
|
|
52
52
|
return response_200
|
|
53
|
-
if response.status_code == 402:
|
|
54
|
-
response_402 = ErrorResponse.from_dict(response.json())
|
|
55
|
-
|
|
56
|
-
return response_402
|
|
57
53
|
if response.status_code == 403:
|
|
58
54
|
response_403 = ErrorResponse.from_dict(response.json())
|
|
59
55
|
|
|
@@ -114,9 +110,8 @@ def sync_detailed(
|
|
|
114
110
|
- Usage trend analysis
|
|
115
111
|
- Performance tuning
|
|
116
112
|
|
|
117
|
-
|
|
118
|
-
-
|
|
119
|
-
- Multiplied by graph tier
|
|
113
|
+
Note:
|
|
114
|
+
This operation is FREE - no credit consumption required.
|
|
120
115
|
|
|
121
116
|
Args:
|
|
122
117
|
graph_id (str): The graph ID to get usage stats for
|
|
@@ -178,9 +173,8 @@ def sync(
|
|
|
178
173
|
- Usage trend analysis
|
|
179
174
|
- Performance tuning
|
|
180
175
|
|
|
181
|
-
|
|
182
|
-
-
|
|
183
|
-
- Multiplied by graph tier
|
|
176
|
+
Note:
|
|
177
|
+
This operation is FREE - no credit consumption required.
|
|
184
178
|
|
|
185
179
|
Args:
|
|
186
180
|
graph_id (str): The graph ID to get usage stats for
|
|
@@ -237,9 +231,8 @@ async def asyncio_detailed(
|
|
|
237
231
|
- Usage trend analysis
|
|
238
232
|
- Performance tuning
|
|
239
233
|
|
|
240
|
-
|
|
241
|
-
-
|
|
242
|
-
- Multiplied by graph tier
|
|
234
|
+
Note:
|
|
235
|
+
This operation is FREE - no credit consumption required.
|
|
243
236
|
|
|
244
237
|
Args:
|
|
245
238
|
graph_id (str): The graph ID to get usage stats for
|
|
@@ -299,9 +292,8 @@ async def asyncio(
|
|
|
299
292
|
- Usage trend analysis
|
|
300
293
|
- Performance tuning
|
|
301
294
|
|
|
302
|
-
|
|
303
|
-
-
|
|
304
|
-
- Multiplied by graph tier
|
|
295
|
+
Note:
|
|
296
|
+
This operation is FREE - no credit consumption required.
|
|
305
297
|
|
|
306
298
|
Args:
|
|
307
299
|
graph_id (str): The graph ID to get usage stats for
|
|
@@ -158,11 +158,8 @@ def sync_detailed(
|
|
|
158
158
|
- `408 Request Timeout`: Tool execution exceeded timeout
|
|
159
159
|
- Clients should implement exponential backoff on errors
|
|
160
160
|
|
|
161
|
-
**
|
|
162
|
-
|
|
163
|
-
- Schema tools: 5-10 credits
|
|
164
|
-
- Query tools: 10-50 credits (based on complexity)
|
|
165
|
-
- Multiplied by graph tier
|
|
161
|
+
**Note:**
|
|
162
|
+
MCP tool calls are currently FREE and do not consume credits.
|
|
166
163
|
|
|
167
164
|
Args:
|
|
168
165
|
graph_id (str): Graph database identifier
|
|
@@ -240,11 +237,8 @@ def sync(
|
|
|
240
237
|
- `408 Request Timeout`: Tool execution exceeded timeout
|
|
241
238
|
- Clients should implement exponential backoff on errors
|
|
242
239
|
|
|
243
|
-
**
|
|
244
|
-
|
|
245
|
-
- Schema tools: 5-10 credits
|
|
246
|
-
- Query tools: 10-50 credits (based on complexity)
|
|
247
|
-
- Multiplied by graph tier
|
|
240
|
+
**Note:**
|
|
241
|
+
MCP tool calls are currently FREE and do not consume credits.
|
|
248
242
|
|
|
249
243
|
Args:
|
|
250
244
|
graph_id (str): Graph database identifier
|
|
@@ -317,11 +311,8 @@ async def asyncio_detailed(
|
|
|
317
311
|
- `408 Request Timeout`: Tool execution exceeded timeout
|
|
318
312
|
- Clients should implement exponential backoff on errors
|
|
319
313
|
|
|
320
|
-
**
|
|
321
|
-
|
|
322
|
-
- Schema tools: 5-10 credits
|
|
323
|
-
- Query tools: 10-50 credits (based on complexity)
|
|
324
|
-
- Multiplied by graph tier
|
|
314
|
+
**Note:**
|
|
315
|
+
MCP tool calls are currently FREE and do not consume credits.
|
|
325
316
|
|
|
326
317
|
Args:
|
|
327
318
|
graph_id (str): Graph database identifier
|
|
@@ -397,11 +388,8 @@ async def asyncio(
|
|
|
397
388
|
- `408 Request Timeout`: Tool execution exceeded timeout
|
|
398
389
|
- Clients should implement exponential backoff on errors
|
|
399
390
|
|
|
400
|
-
**
|
|
401
|
-
|
|
402
|
-
- Schema tools: 5-10 credits
|
|
403
|
-
- Query tools: 10-50 credits (based on complexity)
|
|
404
|
-
- Multiplied by graph tier
|
|
391
|
+
**Note:**
|
|
392
|
+
MCP tool calls are currently FREE and do not consume credits.
|
|
405
393
|
|
|
406
394
|
Args:
|
|
407
395
|
graph_id (str): Graph database identifier
|
|
@@ -73,9 +73,6 @@ def _parse_response(
|
|
|
73
73
|
if response.status_code == 400:
|
|
74
74
|
response_400 = cast(Any, None)
|
|
75
75
|
return response_400
|
|
76
|
-
if response.status_code == 402:
|
|
77
|
-
response_402 = cast(Any, None)
|
|
78
|
-
return response_402
|
|
79
76
|
if response.status_code == 403:
|
|
80
77
|
response_403 = cast(Any, None)
|
|
81
78
|
return response_403
|
|
@@ -136,7 +133,7 @@ def sync_detailed(
|
|
|
136
133
|
**Response Modes:**
|
|
137
134
|
- `auto` (default): Intelligent automatic selection
|
|
138
135
|
- `sync`: Force synchronous JSON response (best for testing)
|
|
139
|
-
- `async`: Force queued response with polling
|
|
136
|
+
- `async`: Force queued response with SSE monitoring endpoints (no polling needed)
|
|
140
137
|
- `stream`: Force streaming response (SSE or NDJSON)
|
|
141
138
|
|
|
142
139
|
**Client Detection:**
|
|
@@ -159,19 +156,19 @@ def sync_detailed(
|
|
|
159
156
|
|
|
160
157
|
**Queue Management:**
|
|
161
158
|
- Automatic queuing under high load
|
|
162
|
-
-
|
|
159
|
+
- Real-time monitoring via SSE events (no polling needed)
|
|
163
160
|
- Priority based on subscription tier
|
|
164
|
-
- Queue position updates via SSE
|
|
161
|
+
- Queue position and progress updates pushed via SSE
|
|
162
|
+
- Connect to returned `/v1/operations/{id}/stream` endpoint for updates
|
|
165
163
|
|
|
166
164
|
**Error Handling:**
|
|
167
165
|
- `429 Too Many Requests`: Rate limit or connection limit exceeded
|
|
168
166
|
- `503 Service Unavailable`: Circuit breaker open or SSE disabled
|
|
169
167
|
- Clients should implement exponential backoff
|
|
170
168
|
|
|
171
|
-
**
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
- Queue position based on subscription tier
|
|
169
|
+
**Note:**
|
|
170
|
+
Query operations are FREE - no credit consumption required.
|
|
171
|
+
Queue position is based on subscription tier for priority.
|
|
175
172
|
|
|
176
173
|
Args:
|
|
177
174
|
graph_id (str): Graph database identifier
|
|
@@ -231,7 +228,7 @@ def sync(
|
|
|
231
228
|
**Response Modes:**
|
|
232
229
|
- `auto` (default): Intelligent automatic selection
|
|
233
230
|
- `sync`: Force synchronous JSON response (best for testing)
|
|
234
|
-
- `async`: Force queued response with polling
|
|
231
|
+
- `async`: Force queued response with SSE monitoring endpoints (no polling needed)
|
|
235
232
|
- `stream`: Force streaming response (SSE or NDJSON)
|
|
236
233
|
|
|
237
234
|
**Client Detection:**
|
|
@@ -254,19 +251,19 @@ def sync(
|
|
|
254
251
|
|
|
255
252
|
**Queue Management:**
|
|
256
253
|
- Automatic queuing under high load
|
|
257
|
-
-
|
|
254
|
+
- Real-time monitoring via SSE events (no polling needed)
|
|
258
255
|
- Priority based on subscription tier
|
|
259
|
-
- Queue position updates via SSE
|
|
256
|
+
- Queue position and progress updates pushed via SSE
|
|
257
|
+
- Connect to returned `/v1/operations/{id}/stream` endpoint for updates
|
|
260
258
|
|
|
261
259
|
**Error Handling:**
|
|
262
260
|
- `429 Too Many Requests`: Rate limit or connection limit exceeded
|
|
263
261
|
- `503 Service Unavailable`: Circuit breaker open or SSE disabled
|
|
264
262
|
- Clients should implement exponential backoff
|
|
265
263
|
|
|
266
|
-
**
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
- Queue position based on subscription tier
|
|
264
|
+
**Note:**
|
|
265
|
+
Query operations are FREE - no credit consumption required.
|
|
266
|
+
Queue position is based on subscription tier for priority.
|
|
270
267
|
|
|
271
268
|
Args:
|
|
272
269
|
graph_id (str): Graph database identifier
|
|
@@ -321,7 +318,7 @@ async def asyncio_detailed(
|
|
|
321
318
|
**Response Modes:**
|
|
322
319
|
- `auto` (default): Intelligent automatic selection
|
|
323
320
|
- `sync`: Force synchronous JSON response (best for testing)
|
|
324
|
-
- `async`: Force queued response with polling
|
|
321
|
+
- `async`: Force queued response with SSE monitoring endpoints (no polling needed)
|
|
325
322
|
- `stream`: Force streaming response (SSE or NDJSON)
|
|
326
323
|
|
|
327
324
|
**Client Detection:**
|
|
@@ -344,19 +341,19 @@ async def asyncio_detailed(
|
|
|
344
341
|
|
|
345
342
|
**Queue Management:**
|
|
346
343
|
- Automatic queuing under high load
|
|
347
|
-
-
|
|
344
|
+
- Real-time monitoring via SSE events (no polling needed)
|
|
348
345
|
- Priority based on subscription tier
|
|
349
|
-
- Queue position updates via SSE
|
|
346
|
+
- Queue position and progress updates pushed via SSE
|
|
347
|
+
- Connect to returned `/v1/operations/{id}/stream` endpoint for updates
|
|
350
348
|
|
|
351
349
|
**Error Handling:**
|
|
352
350
|
- `429 Too Many Requests`: Rate limit or connection limit exceeded
|
|
353
351
|
- `503 Service Unavailable`: Circuit breaker open or SSE disabled
|
|
354
352
|
- Clients should implement exponential backoff
|
|
355
353
|
|
|
356
|
-
**
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
- Queue position based on subscription tier
|
|
354
|
+
**Note:**
|
|
355
|
+
Query operations are FREE - no credit consumption required.
|
|
356
|
+
Queue position is based on subscription tier for priority.
|
|
360
357
|
|
|
361
358
|
Args:
|
|
362
359
|
graph_id (str): Graph database identifier
|
|
@@ -414,7 +411,7 @@ async def asyncio(
|
|
|
414
411
|
**Response Modes:**
|
|
415
412
|
- `auto` (default): Intelligent automatic selection
|
|
416
413
|
- `sync`: Force synchronous JSON response (best for testing)
|
|
417
|
-
- `async`: Force queued response with polling
|
|
414
|
+
- `async`: Force queued response with SSE monitoring endpoints (no polling needed)
|
|
418
415
|
- `stream`: Force streaming response (SSE or NDJSON)
|
|
419
416
|
|
|
420
417
|
**Client Detection:**
|
|
@@ -437,19 +434,19 @@ async def asyncio(
|
|
|
437
434
|
|
|
438
435
|
**Queue Management:**
|
|
439
436
|
- Automatic queuing under high load
|
|
440
|
-
-
|
|
437
|
+
- Real-time monitoring via SSE events (no polling needed)
|
|
441
438
|
- Priority based on subscription tier
|
|
442
|
-
- Queue position updates via SSE
|
|
439
|
+
- Queue position and progress updates pushed via SSE
|
|
440
|
+
- Connect to returned `/v1/operations/{id}/stream` endpoint for updates
|
|
443
441
|
|
|
444
442
|
**Error Handling:**
|
|
445
443
|
- `429 Too Many Requests`: Rate limit or connection limit exceeded
|
|
446
444
|
- `503 Service Unavailable`: Circuit breaker open or SSE disabled
|
|
447
445
|
- Clients should implement exponential backoff
|
|
448
446
|
|
|
449
|
-
**
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
- Queue position based on subscription tier
|
|
447
|
+
**Note:**
|
|
448
|
+
Query operations are FREE - no credit consumption required.
|
|
449
|
+
Queue position is based on subscription tier for priority.
|
|
453
450
|
|
|
454
451
|
Args:
|
|
455
452
|
graph_id (str): Graph database identifier
|