robosystems-client 0.1.16__py3-none-any.whl → 0.1.17__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.

Potentially problematic release.


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

Files changed (96) hide show
  1. robosystems_client/api/agent/auto_select_agent.py +0 -18
  2. robosystems_client/api/agent/batch_process_queries.py +0 -18
  3. robosystems_client/api/agent/execute_specific_agent.py +0 -18
  4. robosystems_client/api/agent/get_agent_metadata.py +0 -18
  5. robosystems_client/api/agent/list_agents.py +0 -18
  6. robosystems_client/api/agent/recommend_agent.py +0 -18
  7. robosystems_client/api/auth/forgot_password.py +191 -0
  8. robosystems_client/api/auth/generate_sso_token.py +18 -0
  9. robosystems_client/api/auth/get_current_auth_user.py +4 -22
  10. robosystems_client/api/auth/logout_user.py +17 -17
  11. robosystems_client/api/auth/{refresh_session.py → refresh_auth_session.py} +21 -21
  12. robosystems_client/api/auth/resend_verification_email.py +222 -0
  13. robosystems_client/api/auth/reset_password.py +177 -0
  14. robosystems_client/api/auth/validate_reset_token.py +171 -0
  15. robosystems_client/api/auth/verify_email.py +177 -0
  16. robosystems_client/api/backup/create_backup.py +0 -18
  17. robosystems_client/api/backup/export_backup.py +0 -18
  18. robosystems_client/api/backup/get_backup_download_url.py +0 -18
  19. robosystems_client/api/backup/get_backup_stats.py +0 -18
  20. robosystems_client/api/backup/list_backups.py +0 -18
  21. robosystems_client/api/backup/restore_backup.py +0 -18
  22. robosystems_client/api/connections/create_connection.py +0 -18
  23. robosystems_client/api/connections/create_link_token.py +0 -18
  24. robosystems_client/api/connections/delete_connection.py +0 -18
  25. robosystems_client/api/connections/exchange_link_token.py +0 -18
  26. robosystems_client/api/connections/get_connection.py +0 -18
  27. robosystems_client/api/connections/get_connection_options.py +0 -18
  28. robosystems_client/api/connections/init_o_auth.py +0 -18
  29. robosystems_client/api/connections/list_connections.py +0 -18
  30. robosystems_client/api/connections/oauth_callback.py +4 -22
  31. robosystems_client/api/connections/sync_connection.py +0 -18
  32. robosystems_client/api/copy/copy_data_to_graph.py +0 -18
  33. robosystems_client/api/create/create_graph.py +0 -18
  34. robosystems_client/api/graph_analytics/get_graph_metrics.py +0 -18
  35. robosystems_client/api/graph_analytics/get_graph_usage_stats.py +0 -18
  36. robosystems_client/api/graph_billing/get_current_graph_bill.py +0 -18
  37. robosystems_client/api/graph_billing/get_graph_billing_history.py +0 -18
  38. robosystems_client/api/graph_billing/get_graph_monthly_bill.py +0 -18
  39. robosystems_client/api/graph_billing/get_graph_usage_details.py +0 -18
  40. robosystems_client/api/graph_credits/check_credit_balance.py +0 -18
  41. robosystems_client/api/graph_credits/check_storage_limits.py +0 -18
  42. robosystems_client/api/graph_credits/get_credit_summary.py +0 -18
  43. robosystems_client/api/graph_credits/get_storage_usage.py +0 -18
  44. robosystems_client/api/graph_credits/list_credit_transactions.py +0 -18
  45. robosystems_client/api/graph_health/get_database_health.py +0 -18
  46. robosystems_client/api/graph_info/get_database_info.py +0 -18
  47. robosystems_client/api/graph_limits/get_graph_limits.py +0 -18
  48. robosystems_client/api/mcp/call_mcp_tool.py +0 -18
  49. robosystems_client/api/mcp/list_mcp_tools.py +0 -18
  50. robosystems_client/api/operations/cancel_operation.py +0 -18
  51. robosystems_client/api/operations/get_operation_status.py +0 -18
  52. robosystems_client/api/operations/stream_operation_events.py +0 -18
  53. robosystems_client/api/query/execute_cypher_query.py +0 -18
  54. robosystems_client/api/schema/export_graph_schema.py +0 -18
  55. robosystems_client/api/schema/get_graph_schema_info.py +0 -18
  56. robosystems_client/api/schema/list_schema_extensions.py +0 -18
  57. robosystems_client/api/schema/validate_schema.py +0 -18
  58. robosystems_client/api/subgraphs/create_subgraph.py +0 -18
  59. robosystems_client/api/subgraphs/delete_subgraph.py +0 -18
  60. robosystems_client/api/subgraphs/get_subgraph_info.py +0 -18
  61. robosystems_client/api/subgraphs/get_subgraph_quota.py +0 -18
  62. robosystems_client/api/subgraphs/list_subgraphs.py +0 -18
  63. robosystems_client/api/user/create_user_api_key.py +0 -18
  64. robosystems_client/api/user/get_all_credit_summaries.py +0 -18
  65. robosystems_client/api/user/get_current_user.py +0 -18
  66. robosystems_client/api/user/get_user_graphs.py +0 -18
  67. robosystems_client/api/user/list_user_api_keys.py +0 -18
  68. robosystems_client/api/user/revoke_user_api_key.py +0 -18
  69. robosystems_client/api/user/select_user_graph.py +0 -18
  70. robosystems_client/api/user/update_user.py +0 -18
  71. robosystems_client/api/user/update_user_api_key.py +0 -18
  72. robosystems_client/api/user/update_user_password.py +0 -18
  73. robosystems_client/api/user_analytics/get_detailed_user_analytics.py +0 -18
  74. robosystems_client/api/user_analytics/get_user_usage_overview.py +0 -18
  75. robosystems_client/api/user_limits/get_all_shared_repository_limits.py +0 -18
  76. robosystems_client/api/user_limits/get_shared_repository_limits.py +0 -18
  77. robosystems_client/api/user_limits/get_user_limits.py +0 -18
  78. robosystems_client/api/user_limits/get_user_usage.py +0 -18
  79. robosystems_client/api/user_subscriptions/cancel_shared_repository_subscription.py +0 -18
  80. robosystems_client/api/user_subscriptions/get_repository_credits.py +0 -18
  81. robosystems_client/api/user_subscriptions/get_shared_repository_credits.py +0 -18
  82. robosystems_client/api/user_subscriptions/get_user_shared_subscriptions.py +0 -18
  83. robosystems_client/api/user_subscriptions/subscribe_to_shared_repository.py +0 -18
  84. robosystems_client/api/user_subscriptions/upgrade_shared_repository_subscription.py +0 -18
  85. robosystems_client/models/__init__.py +16 -0
  86. robosystems_client/models/email_verification_request.py +60 -0
  87. robosystems_client/models/forgot_password_request.py +60 -0
  88. robosystems_client/models/forgot_password_response_forgotpassword.py +44 -0
  89. robosystems_client/models/resend_verification_email_response_resendverificationemail.py +44 -0
  90. robosystems_client/models/reset_password_request.py +68 -0
  91. robosystems_client/models/reset_password_validate_response.py +82 -0
  92. robosystems_client-0.1.17.dist-info/METADATA +89 -0
  93. {robosystems_client-0.1.16.dist-info → robosystems_client-0.1.17.dist-info}/RECORD +95 -83
  94. robosystems_client-0.1.17.dist-info/licenses/LICENSE +21 -0
  95. robosystems_client-0.1.16.dist-info/METADATA +0 -302
  96. {robosystems_client-0.1.16.dist-info → robosystems_client-0.1.17.dist-info}/WHEEL +0 -0
@@ -17,20 +17,14 @@ def _get_kwargs(
17
17
  *,
18
18
  body: AgentRequest,
19
19
  authorization: Union[None, Unset, str] = UNSET,
20
- auth_token: Union[None, Unset, str] = UNSET,
21
20
  ) -> dict[str, Any]:
22
21
  headers: dict[str, Any] = {}
23
22
  if not isinstance(authorization, Unset):
24
23
  headers["authorization"] = authorization
25
24
 
26
- cookies = {}
27
- if auth_token is not UNSET:
28
- cookies["auth-token"] = auth_token
29
-
30
25
  _kwargs: dict[str, Any] = {
31
26
  "method": "post",
32
27
  "url": f"/v1/{graph_id}/agent",
33
- "cookies": cookies,
34
28
  }
35
29
 
36
30
  _kwargs["json"] = body.to_dict()
@@ -88,7 +82,6 @@ def sync_detailed(
88
82
  client: AuthenticatedClient,
89
83
  body: AgentRequest,
90
84
  authorization: Union[None, Unset, str] = UNSET,
91
- auth_token: Union[None, Unset, str] = UNSET,
92
85
  ) -> Response[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
93
86
  """Auto-select agent for query
94
87
 
@@ -105,7 +98,6 @@ def sync_detailed(
105
98
  Args:
106
99
  graph_id (str):
107
100
  authorization (Union[None, Unset, str]):
108
- auth_token (Union[None, Unset, str]):
109
101
  body (AgentRequest): Request model for agent interactions.
110
102
 
111
103
  Raises:
@@ -120,7 +112,6 @@ def sync_detailed(
120
112
  graph_id=graph_id,
121
113
  body=body,
122
114
  authorization=authorization,
123
- auth_token=auth_token,
124
115
  )
125
116
 
126
117
  response = client.get_httpx_client().request(
@@ -136,7 +127,6 @@ def sync(
136
127
  client: AuthenticatedClient,
137
128
  body: AgentRequest,
138
129
  authorization: Union[None, Unset, str] = UNSET,
139
- auth_token: Union[None, Unset, str] = UNSET,
140
130
  ) -> Optional[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
141
131
  """Auto-select agent for query
142
132
 
@@ -153,7 +143,6 @@ def sync(
153
143
  Args:
154
144
  graph_id (str):
155
145
  authorization (Union[None, Unset, str]):
156
- auth_token (Union[None, Unset, str]):
157
146
  body (AgentRequest): Request model for agent interactions.
158
147
 
159
148
  Raises:
@@ -169,7 +158,6 @@ def sync(
169
158
  client=client,
170
159
  body=body,
171
160
  authorization=authorization,
172
- auth_token=auth_token,
173
161
  ).parsed
174
162
 
175
163
 
@@ -179,7 +167,6 @@ async def asyncio_detailed(
179
167
  client: AuthenticatedClient,
180
168
  body: AgentRequest,
181
169
  authorization: Union[None, Unset, str] = UNSET,
182
- auth_token: Union[None, Unset, str] = UNSET,
183
170
  ) -> Response[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
184
171
  """Auto-select agent for query
185
172
 
@@ -196,7 +183,6 @@ async def asyncio_detailed(
196
183
  Args:
197
184
  graph_id (str):
198
185
  authorization (Union[None, Unset, str]):
199
- auth_token (Union[None, Unset, str]):
200
186
  body (AgentRequest): Request model for agent interactions.
201
187
 
202
188
  Raises:
@@ -211,7 +197,6 @@ async def asyncio_detailed(
211
197
  graph_id=graph_id,
212
198
  body=body,
213
199
  authorization=authorization,
214
- auth_token=auth_token,
215
200
  )
216
201
 
217
202
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -225,7 +210,6 @@ async def asyncio(
225
210
  client: AuthenticatedClient,
226
211
  body: AgentRequest,
227
212
  authorization: Union[None, Unset, str] = UNSET,
228
- auth_token: Union[None, Unset, str] = UNSET,
229
213
  ) -> Optional[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
230
214
  """Auto-select agent for query
231
215
 
@@ -242,7 +226,6 @@ async def asyncio(
242
226
  Args:
243
227
  graph_id (str):
244
228
  authorization (Union[None, Unset, str]):
245
- auth_token (Union[None, Unset, str]):
246
229
  body (AgentRequest): Request model for agent interactions.
247
230
 
248
231
  Raises:
@@ -259,6 +242,5 @@ async def asyncio(
259
242
  client=client,
260
243
  body=body,
261
244
  authorization=authorization,
262
- auth_token=auth_token,
263
245
  )
264
246
  ).parsed
@@ -16,20 +16,14 @@ def _get_kwargs(
16
16
  *,
17
17
  body: BatchAgentRequest,
18
18
  authorization: Union[None, Unset, str] = UNSET,
19
- auth_token: Union[None, Unset, str] = UNSET,
20
19
  ) -> dict[str, Any]:
21
20
  headers: dict[str, Any] = {}
22
21
  if not isinstance(authorization, Unset):
23
22
  headers["authorization"] = authorization
24
23
 
25
- cookies = {}
26
- if auth_token is not UNSET:
27
- cookies["auth-token"] = auth_token
28
-
29
24
  _kwargs: dict[str, Any] = {
30
25
  "method": "post",
31
26
  "url": f"/v1/{graph_id}/agent/batch",
32
- "cookies": cookies,
33
27
  }
34
28
 
35
29
  _kwargs["json"] = body.to_dict()
@@ -83,7 +77,6 @@ def sync_detailed(
83
77
  client: AuthenticatedClient,
84
78
  body: BatchAgentRequest,
85
79
  authorization: Union[None, Unset, str] = UNSET,
86
- auth_token: Union[None, Unset, str] = UNSET,
87
80
  ) -> Response[Union[Any, BatchAgentResponse, HTTPValidationError]]:
88
81
  """Batch process multiple queries
89
82
 
@@ -105,7 +98,6 @@ def sync_detailed(
105
98
  Args:
106
99
  graph_id (str):
107
100
  authorization (Union[None, Unset, str]):
108
- auth_token (Union[None, Unset, str]):
109
101
  body (BatchAgentRequest): Request for batch processing multiple queries.
110
102
 
111
103
  Raises:
@@ -120,7 +112,6 @@ def sync_detailed(
120
112
  graph_id=graph_id,
121
113
  body=body,
122
114
  authorization=authorization,
123
- auth_token=auth_token,
124
115
  )
125
116
 
126
117
  response = client.get_httpx_client().request(
@@ -136,7 +127,6 @@ def sync(
136
127
  client: AuthenticatedClient,
137
128
  body: BatchAgentRequest,
138
129
  authorization: Union[None, Unset, str] = UNSET,
139
- auth_token: Union[None, Unset, str] = UNSET,
140
130
  ) -> Optional[Union[Any, BatchAgentResponse, HTTPValidationError]]:
141
131
  """Batch process multiple queries
142
132
 
@@ -158,7 +148,6 @@ def sync(
158
148
  Args:
159
149
  graph_id (str):
160
150
  authorization (Union[None, Unset, str]):
161
- auth_token (Union[None, Unset, str]):
162
151
  body (BatchAgentRequest): Request for batch processing multiple queries.
163
152
 
164
153
  Raises:
@@ -174,7 +163,6 @@ def sync(
174
163
  client=client,
175
164
  body=body,
176
165
  authorization=authorization,
177
- auth_token=auth_token,
178
166
  ).parsed
179
167
 
180
168
 
@@ -184,7 +172,6 @@ async def asyncio_detailed(
184
172
  client: AuthenticatedClient,
185
173
  body: BatchAgentRequest,
186
174
  authorization: Union[None, Unset, str] = UNSET,
187
- auth_token: Union[None, Unset, str] = UNSET,
188
175
  ) -> Response[Union[Any, BatchAgentResponse, HTTPValidationError]]:
189
176
  """Batch process multiple queries
190
177
 
@@ -206,7 +193,6 @@ async def asyncio_detailed(
206
193
  Args:
207
194
  graph_id (str):
208
195
  authorization (Union[None, Unset, str]):
209
- auth_token (Union[None, Unset, str]):
210
196
  body (BatchAgentRequest): Request for batch processing multiple queries.
211
197
 
212
198
  Raises:
@@ -221,7 +207,6 @@ async def asyncio_detailed(
221
207
  graph_id=graph_id,
222
208
  body=body,
223
209
  authorization=authorization,
224
- auth_token=auth_token,
225
210
  )
226
211
 
227
212
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -235,7 +220,6 @@ async def asyncio(
235
220
  client: AuthenticatedClient,
236
221
  body: BatchAgentRequest,
237
222
  authorization: Union[None, Unset, str] = UNSET,
238
- auth_token: Union[None, Unset, str] = UNSET,
239
223
  ) -> Optional[Union[Any, BatchAgentResponse, HTTPValidationError]]:
240
224
  """Batch process multiple queries
241
225
 
@@ -257,7 +241,6 @@ async def asyncio(
257
241
  Args:
258
242
  graph_id (str):
259
243
  authorization (Union[None, Unset, str]):
260
- auth_token (Union[None, Unset, str]):
261
244
  body (BatchAgentRequest): Request for batch processing multiple queries.
262
245
 
263
246
  Raises:
@@ -274,6 +257,5 @@ async def asyncio(
274
257
  client=client,
275
258
  body=body,
276
259
  authorization=authorization,
277
- auth_token=auth_token,
278
260
  )
279
261
  ).parsed
@@ -18,20 +18,14 @@ def _get_kwargs(
18
18
  *,
19
19
  body: AgentRequest,
20
20
  authorization: Union[None, Unset, str] = UNSET,
21
- auth_token: Union[None, Unset, str] = UNSET,
22
21
  ) -> dict[str, Any]:
23
22
  headers: dict[str, Any] = {}
24
23
  if not isinstance(authorization, Unset):
25
24
  headers["authorization"] = authorization
26
25
 
27
- cookies = {}
28
- if auth_token is not UNSET:
29
- cookies["auth-token"] = auth_token
30
-
31
26
  _kwargs: dict[str, Any] = {
32
27
  "method": "post",
33
28
  "url": f"/v1/{graph_id}/agent/{agent_type}",
34
- "cookies": cookies,
35
29
  }
36
30
 
37
31
  _kwargs["json"] = body.to_dict()
@@ -93,7 +87,6 @@ def sync_detailed(
93
87
  client: AuthenticatedClient,
94
88
  body: AgentRequest,
95
89
  authorization: Union[None, Unset, str] = UNSET,
96
- auth_token: Union[None, Unset, str] = UNSET,
97
90
  ) -> Response[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
98
91
  """Execute specific agent
99
92
 
@@ -110,7 +103,6 @@ def sync_detailed(
110
103
  graph_id (str):
111
104
  agent_type (str):
112
105
  authorization (Union[None, Unset, str]):
113
- auth_token (Union[None, Unset, str]):
114
106
  body (AgentRequest): Request model for agent interactions.
115
107
 
116
108
  Raises:
@@ -126,7 +118,6 @@ def sync_detailed(
126
118
  agent_type=agent_type,
127
119
  body=body,
128
120
  authorization=authorization,
129
- auth_token=auth_token,
130
121
  )
131
122
 
132
123
  response = client.get_httpx_client().request(
@@ -143,7 +134,6 @@ def sync(
143
134
  client: AuthenticatedClient,
144
135
  body: AgentRequest,
145
136
  authorization: Union[None, Unset, str] = UNSET,
146
- auth_token: Union[None, Unset, str] = UNSET,
147
137
  ) -> Optional[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
148
138
  """Execute specific agent
149
139
 
@@ -160,7 +150,6 @@ def sync(
160
150
  graph_id (str):
161
151
  agent_type (str):
162
152
  authorization (Union[None, Unset, str]):
163
- auth_token (Union[None, Unset, str]):
164
153
  body (AgentRequest): Request model for agent interactions.
165
154
 
166
155
  Raises:
@@ -177,7 +166,6 @@ def sync(
177
166
  client=client,
178
167
  body=body,
179
168
  authorization=authorization,
180
- auth_token=auth_token,
181
169
  ).parsed
182
170
 
183
171
 
@@ -188,7 +176,6 @@ async def asyncio_detailed(
188
176
  client: AuthenticatedClient,
189
177
  body: AgentRequest,
190
178
  authorization: Union[None, Unset, str] = UNSET,
191
- auth_token: Union[None, Unset, str] = UNSET,
192
179
  ) -> Response[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
193
180
  """Execute specific agent
194
181
 
@@ -205,7 +192,6 @@ async def asyncio_detailed(
205
192
  graph_id (str):
206
193
  agent_type (str):
207
194
  authorization (Union[None, Unset, str]):
208
- auth_token (Union[None, Unset, str]):
209
195
  body (AgentRequest): Request model for agent interactions.
210
196
 
211
197
  Raises:
@@ -221,7 +207,6 @@ async def asyncio_detailed(
221
207
  agent_type=agent_type,
222
208
  body=body,
223
209
  authorization=authorization,
224
- auth_token=auth_token,
225
210
  )
226
211
 
227
212
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -236,7 +221,6 @@ async def asyncio(
236
221
  client: AuthenticatedClient,
237
222
  body: AgentRequest,
238
223
  authorization: Union[None, Unset, str] = UNSET,
239
- auth_token: Union[None, Unset, str] = UNSET,
240
224
  ) -> Optional[Union[AgentResponse, Any, ErrorResponse, HTTPValidationError]]:
241
225
  """Execute specific agent
242
226
 
@@ -253,7 +237,6 @@ async def asyncio(
253
237
  graph_id (str):
254
238
  agent_type (str):
255
239
  authorization (Union[None, Unset, str]):
256
- auth_token (Union[None, Unset, str]):
257
240
  body (AgentRequest): Request model for agent interactions.
258
241
 
259
242
  Raises:
@@ -271,6 +254,5 @@ async def asyncio(
271
254
  client=client,
272
255
  body=body,
273
256
  authorization=authorization,
274
- auth_token=auth_token,
275
257
  )
276
258
  ).parsed
@@ -15,20 +15,14 @@ def _get_kwargs(
15
15
  agent_type: str,
16
16
  *,
17
17
  authorization: Union[None, Unset, str] = UNSET,
18
- auth_token: Union[None, Unset, str] = UNSET,
19
18
  ) -> dict[str, Any]:
20
19
  headers: dict[str, Any] = {}
21
20
  if not isinstance(authorization, Unset):
22
21
  headers["authorization"] = authorization
23
22
 
24
- cookies = {}
25
- if auth_token is not UNSET:
26
- cookies["auth-token"] = auth_token
27
-
28
23
  _kwargs: dict[str, Any] = {
29
24
  "method": "get",
30
25
  "url": f"/v1/{graph_id}/agent/{agent_type}/metadata",
31
- "cookies": cookies,
32
26
  }
33
27
 
34
28
  _kwargs["headers"] = headers
@@ -72,7 +66,6 @@ def sync_detailed(
72
66
  *,
73
67
  client: AuthenticatedClient,
74
68
  authorization: Union[None, Unset, str] = UNSET,
75
- auth_token: Union[None, Unset, str] = UNSET,
76
69
  ) -> Response[Union[AgentMetadataResponse, Any, HTTPValidationError]]:
77
70
  """Get agent metadata
78
71
 
@@ -92,7 +85,6 @@ def sync_detailed(
92
85
  graph_id (str): Graph database identifier
93
86
  agent_type (str): Agent type identifier (e.g., 'financial', 'research', 'rag')
94
87
  authorization (Union[None, Unset, str]):
95
- auth_token (Union[None, Unset, str]):
96
88
 
97
89
  Raises:
98
90
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -106,7 +98,6 @@ def sync_detailed(
106
98
  graph_id=graph_id,
107
99
  agent_type=agent_type,
108
100
  authorization=authorization,
109
- auth_token=auth_token,
110
101
  )
111
102
 
112
103
  response = client.get_httpx_client().request(
@@ -122,7 +113,6 @@ def sync(
122
113
  *,
123
114
  client: AuthenticatedClient,
124
115
  authorization: Union[None, Unset, str] = UNSET,
125
- auth_token: Union[None, Unset, str] = UNSET,
126
116
  ) -> Optional[Union[AgentMetadataResponse, Any, HTTPValidationError]]:
127
117
  """Get agent metadata
128
118
 
@@ -142,7 +132,6 @@ def sync(
142
132
  graph_id (str): Graph database identifier
143
133
  agent_type (str): Agent type identifier (e.g., 'financial', 'research', 'rag')
144
134
  authorization (Union[None, Unset, str]):
145
- auth_token (Union[None, Unset, str]):
146
135
 
147
136
  Raises:
148
137
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -157,7 +146,6 @@ def sync(
157
146
  agent_type=agent_type,
158
147
  client=client,
159
148
  authorization=authorization,
160
- auth_token=auth_token,
161
149
  ).parsed
162
150
 
163
151
 
@@ -167,7 +155,6 @@ async def asyncio_detailed(
167
155
  *,
168
156
  client: AuthenticatedClient,
169
157
  authorization: Union[None, Unset, str] = UNSET,
170
- auth_token: Union[None, Unset, str] = UNSET,
171
158
  ) -> Response[Union[AgentMetadataResponse, Any, HTTPValidationError]]:
172
159
  """Get agent metadata
173
160
 
@@ -187,7 +174,6 @@ async def asyncio_detailed(
187
174
  graph_id (str): Graph database identifier
188
175
  agent_type (str): Agent type identifier (e.g., 'financial', 'research', 'rag')
189
176
  authorization (Union[None, Unset, str]):
190
- auth_token (Union[None, Unset, str]):
191
177
 
192
178
  Raises:
193
179
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -201,7 +187,6 @@ async def asyncio_detailed(
201
187
  graph_id=graph_id,
202
188
  agent_type=agent_type,
203
189
  authorization=authorization,
204
- auth_token=auth_token,
205
190
  )
206
191
 
207
192
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -215,7 +200,6 @@ async def asyncio(
215
200
  *,
216
201
  client: AuthenticatedClient,
217
202
  authorization: Union[None, Unset, str] = UNSET,
218
- auth_token: Union[None, Unset, str] = UNSET,
219
203
  ) -> Optional[Union[AgentMetadataResponse, Any, HTTPValidationError]]:
220
204
  """Get agent metadata
221
205
 
@@ -235,7 +219,6 @@ async def asyncio(
235
219
  graph_id (str): Graph database identifier
236
220
  agent_type (str): Agent type identifier (e.g., 'financial', 'research', 'rag')
237
221
  authorization (Union[None, Unset, str]):
238
- auth_token (Union[None, Unset, str]):
239
222
 
240
223
  Raises:
241
224
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -251,6 +234,5 @@ async def asyncio(
251
234
  agent_type=agent_type,
252
235
  client=client,
253
236
  authorization=authorization,
254
- auth_token=auth_token,
255
237
  )
256
238
  ).parsed
@@ -15,16 +15,11 @@ def _get_kwargs(
15
15
  *,
16
16
  capability: Union[None, Unset, str] = UNSET,
17
17
  authorization: Union[None, Unset, str] = UNSET,
18
- auth_token: Union[None, Unset, str] = UNSET,
19
18
  ) -> dict[str, Any]:
20
19
  headers: dict[str, Any] = {}
21
20
  if not isinstance(authorization, Unset):
22
21
  headers["authorization"] = authorization
23
22
 
24
- cookies = {}
25
- if auth_token is not UNSET:
26
- cookies["auth-token"] = auth_token
27
-
28
23
  params: dict[str, Any] = {}
29
24
 
30
25
  json_capability: Union[None, Unset, str]
@@ -40,7 +35,6 @@ def _get_kwargs(
40
35
  "method": "get",
41
36
  "url": f"/v1/{graph_id}/agent/list",
42
37
  "params": params,
43
- "cookies": cookies,
44
38
  }
45
39
 
46
40
  _kwargs["headers"] = headers
@@ -84,7 +78,6 @@ def sync_detailed(
84
78
  client: AuthenticatedClient,
85
79
  capability: Union[None, Unset, str] = UNSET,
86
80
  authorization: Union[None, Unset, str] = UNSET,
87
- auth_token: Union[None, Unset, str] = UNSET,
88
81
  ) -> Response[Union[AgentListResponse, Any, HTTPValidationError]]:
89
82
  """List available agents
90
83
 
@@ -103,7 +96,6 @@ def sync_detailed(
103
96
  capability (Union[None, Unset, str]): Filter by capability (e.g., 'financial_analysis',
104
97
  'rag_search')
105
98
  authorization (Union[None, Unset, str]):
106
- auth_token (Union[None, Unset, str]):
107
99
 
108
100
  Raises:
109
101
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -117,7 +109,6 @@ def sync_detailed(
117
109
  graph_id=graph_id,
118
110
  capability=capability,
119
111
  authorization=authorization,
120
- auth_token=auth_token,
121
112
  )
122
113
 
123
114
  response = client.get_httpx_client().request(
@@ -133,7 +124,6 @@ def sync(
133
124
  client: AuthenticatedClient,
134
125
  capability: Union[None, Unset, str] = UNSET,
135
126
  authorization: Union[None, Unset, str] = UNSET,
136
- auth_token: Union[None, Unset, str] = UNSET,
137
127
  ) -> Optional[Union[AgentListResponse, Any, HTTPValidationError]]:
138
128
  """List available agents
139
129
 
@@ -152,7 +142,6 @@ def sync(
152
142
  capability (Union[None, Unset, str]): Filter by capability (e.g., 'financial_analysis',
153
143
  'rag_search')
154
144
  authorization (Union[None, Unset, str]):
155
- auth_token (Union[None, Unset, str]):
156
145
 
157
146
  Raises:
158
147
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -167,7 +156,6 @@ def sync(
167
156
  client=client,
168
157
  capability=capability,
169
158
  authorization=authorization,
170
- auth_token=auth_token,
171
159
  ).parsed
172
160
 
173
161
 
@@ -177,7 +165,6 @@ async def asyncio_detailed(
177
165
  client: AuthenticatedClient,
178
166
  capability: Union[None, Unset, str] = UNSET,
179
167
  authorization: Union[None, Unset, str] = UNSET,
180
- auth_token: Union[None, Unset, str] = UNSET,
181
168
  ) -> Response[Union[AgentListResponse, Any, HTTPValidationError]]:
182
169
  """List available agents
183
170
 
@@ -196,7 +183,6 @@ async def asyncio_detailed(
196
183
  capability (Union[None, Unset, str]): Filter by capability (e.g., 'financial_analysis',
197
184
  'rag_search')
198
185
  authorization (Union[None, Unset, str]):
199
- auth_token (Union[None, Unset, str]):
200
186
 
201
187
  Raises:
202
188
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -210,7 +196,6 @@ async def asyncio_detailed(
210
196
  graph_id=graph_id,
211
197
  capability=capability,
212
198
  authorization=authorization,
213
- auth_token=auth_token,
214
199
  )
215
200
 
216
201
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -224,7 +209,6 @@ async def asyncio(
224
209
  client: AuthenticatedClient,
225
210
  capability: Union[None, Unset, str] = UNSET,
226
211
  authorization: Union[None, Unset, str] = UNSET,
227
- auth_token: Union[None, Unset, str] = UNSET,
228
212
  ) -> Optional[Union[AgentListResponse, Any, HTTPValidationError]]:
229
213
  """List available agents
230
214
 
@@ -243,7 +227,6 @@ async def asyncio(
243
227
  capability (Union[None, Unset, str]): Filter by capability (e.g., 'financial_analysis',
244
228
  'rag_search')
245
229
  authorization (Union[None, Unset, str]):
246
- auth_token (Union[None, Unset, str]):
247
230
 
248
231
  Raises:
249
232
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -259,6 +242,5 @@ async def asyncio(
259
242
  client=client,
260
243
  capability=capability,
261
244
  authorization=authorization,
262
- auth_token=auth_token,
263
245
  )
264
246
  ).parsed
@@ -16,20 +16,14 @@ def _get_kwargs(
16
16
  *,
17
17
  body: AgentRecommendationRequest,
18
18
  authorization: Union[None, Unset, str] = UNSET,
19
- auth_token: Union[None, Unset, str] = UNSET,
20
19
  ) -> dict[str, Any]:
21
20
  headers: dict[str, Any] = {}
22
21
  if not isinstance(authorization, Unset):
23
22
  headers["authorization"] = authorization
24
23
 
25
- cookies = {}
26
- if auth_token is not UNSET:
27
- cookies["auth-token"] = auth_token
28
-
29
24
  _kwargs: dict[str, Any] = {
30
25
  "method": "post",
31
26
  "url": f"/v1/{graph_id}/agent/recommend",
32
- "cookies": cookies,
33
27
  }
34
28
 
35
29
  _kwargs["json"] = body.to_dict()
@@ -77,7 +71,6 @@ def sync_detailed(
77
71
  client: AuthenticatedClient,
78
72
  body: AgentRecommendationRequest,
79
73
  authorization: Union[None, Unset, str] = UNSET,
80
- auth_token: Union[None, Unset, str] = UNSET,
81
74
  ) -> Response[Union[AgentRecommendationResponse, Any, HTTPValidationError]]:
82
75
  """Get agent recommendations
83
76
 
@@ -99,7 +92,6 @@ def sync_detailed(
99
92
  Args:
100
93
  graph_id (str): Graph database identifier
101
94
  authorization (Union[None, Unset, str]):
102
- auth_token (Union[None, Unset, str]):
103
95
  body (AgentRecommendationRequest): Request for agent recommendations.
104
96
 
105
97
  Raises:
@@ -114,7 +106,6 @@ def sync_detailed(
114
106
  graph_id=graph_id,
115
107
  body=body,
116
108
  authorization=authorization,
117
- auth_token=auth_token,
118
109
  )
119
110
 
120
111
  response = client.get_httpx_client().request(
@@ -130,7 +121,6 @@ def sync(
130
121
  client: AuthenticatedClient,
131
122
  body: AgentRecommendationRequest,
132
123
  authorization: Union[None, Unset, str] = UNSET,
133
- auth_token: Union[None, Unset, str] = UNSET,
134
124
  ) -> Optional[Union[AgentRecommendationResponse, Any, HTTPValidationError]]:
135
125
  """Get agent recommendations
136
126
 
@@ -152,7 +142,6 @@ def sync(
152
142
  Args:
153
143
  graph_id (str): Graph database identifier
154
144
  authorization (Union[None, Unset, str]):
155
- auth_token (Union[None, Unset, str]):
156
145
  body (AgentRecommendationRequest): Request for agent recommendations.
157
146
 
158
147
  Raises:
@@ -168,7 +157,6 @@ def sync(
168
157
  client=client,
169
158
  body=body,
170
159
  authorization=authorization,
171
- auth_token=auth_token,
172
160
  ).parsed
173
161
 
174
162
 
@@ -178,7 +166,6 @@ async def asyncio_detailed(
178
166
  client: AuthenticatedClient,
179
167
  body: AgentRecommendationRequest,
180
168
  authorization: Union[None, Unset, str] = UNSET,
181
- auth_token: Union[None, Unset, str] = UNSET,
182
169
  ) -> Response[Union[AgentRecommendationResponse, Any, HTTPValidationError]]:
183
170
  """Get agent recommendations
184
171
 
@@ -200,7 +187,6 @@ async def asyncio_detailed(
200
187
  Args:
201
188
  graph_id (str): Graph database identifier
202
189
  authorization (Union[None, Unset, str]):
203
- auth_token (Union[None, Unset, str]):
204
190
  body (AgentRecommendationRequest): Request for agent recommendations.
205
191
 
206
192
  Raises:
@@ -215,7 +201,6 @@ async def asyncio_detailed(
215
201
  graph_id=graph_id,
216
202
  body=body,
217
203
  authorization=authorization,
218
- auth_token=auth_token,
219
204
  )
220
205
 
221
206
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -229,7 +214,6 @@ async def asyncio(
229
214
  client: AuthenticatedClient,
230
215
  body: AgentRecommendationRequest,
231
216
  authorization: Union[None, Unset, str] = UNSET,
232
- auth_token: Union[None, Unset, str] = UNSET,
233
217
  ) -> Optional[Union[AgentRecommendationResponse, Any, HTTPValidationError]]:
234
218
  """Get agent recommendations
235
219
 
@@ -251,7 +235,6 @@ async def asyncio(
251
235
  Args:
252
236
  graph_id (str): Graph database identifier
253
237
  authorization (Union[None, Unset, str]):
254
- auth_token (Union[None, Unset, str]):
255
238
  body (AgentRecommendationRequest): Request for agent recommendations.
256
239
 
257
240
  Raises:
@@ -268,6 +251,5 @@ async def asyncio(
268
251
  client=client,
269
252
  body=body,
270
253
  authorization=authorization,
271
- auth_token=auth_token,
272
254
  )
273
255
  ).parsed