Skip to content

Commit f04e2d7

Browse files
rushilpatel0github-actions[bot]
authored andcommitted
Automated pre-commit update
1 parent b8294bf commit f04e2d7

File tree

1 file changed

+12
-57
lines changed

1 file changed

+12
-57
lines changed

docs/api-reference/openapi3.json

Lines changed: 12 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,7 @@
1414
"paths": {
1515
"/v1/organizations/{org_id}/users": {
1616
"get": {
17-
"tags": [
18-
"users",
19-
"users",
20-
"users"
21-
],
17+
"tags": ["users", "users", "users"],
2218
"summary": "Get Users",
2319
"description": "Get paginated list of users for a specific organization.\n\nReturns a paginated list of all users associated with the specified organization.\nThe requesting user must be a member of the organization to access this endpoint.\n\nRate limit: 60 requests per 30 seconds.",
2420
"operationId": "get_users_v1_organizations__org_id__users_get",
@@ -110,11 +106,7 @@
110106
},
111107
"/v1/organizations/{org_id}/users/{user_id}": {
112108
"get": {
113-
"tags": [
114-
"users",
115-
"users",
116-
"users"
117-
],
109+
"tags": ["users", "users", "users"],
118110
"summary": "Get User",
119111
"description": "Get details for a specific user in an organization.\n\nReturns detailed information about a user within the specified organization.\nThe requesting user must be a member of the organization to access this endpoint.\n\nRate limit: 60 requests per 30 seconds.",
120112
"operationId": "get_user_v1_organizations__org_id__users__user_id__get",
@@ -262,11 +254,7 @@
262254
},
263255
"/v1/organizations/{org_id}/agent/run": {
264256
"post": {
265-
"tags": [
266-
"agents",
267-
"agents",
268-
"agents"
269-
],
257+
"tags": ["agents", "agents", "agents"],
270258
"summary": "Create Agent Run",
271259
"description": "Create a new agent run.\n\nCreates and initiates a long-running agent process based on the provided prompt.\nThe process will complete asynchronously, and the response contains the agent run ID\nwhich can be used to check the status later. The requesting user must be a member\nof the specified organization.\n\nThis endpoint accepts both a text prompt and an optional image file upload.\n\nRate limit: 10 requests per minute.",
272260
"operationId": "create_agent_run_v1_organizations__org_id__agent_run_post",
@@ -365,11 +353,7 @@
365353
},
366354
"/v1/organizations/{org_id}/agent/run/{agent_run_id}": {
367355
"get": {
368-
"tags": [
369-
"agents",
370-
"agents",
371-
"agents"
372-
],
356+
"tags": ["agents", "agents", "agents"],
373357
"summary": "Get Agent Run",
374358
"description": "Retrieve the status and result of an agent run.\n\nReturns the current status, progress, and any available results for the specified agent run.\nThe agent run must belong to the specified organization. If the agent run is still in progress,\nthis endpoint can be polled to check for completion.\n\nRate limit: 60 requests per 30 seconds.",
375359
"operationId": "get_agent_run_v1_organizations__org_id__agent_run__agent_run_id__get",
@@ -585,11 +569,7 @@
585569
},
586570
"/v1/organizations": {
587571
"get": {
588-
"tags": [
589-
"organizations",
590-
"organizations",
591-
"organizations"
592-
],
572+
"tags": ["organizations", "organizations", "organizations"],
593573
"summary": "Get Organizations",
594574
"description": "Get organizations for the authenticated user.\n\nReturns a paginated list of all organizations that the authenticated user is a member of.\nResults include basic organization details such as name, ID, and membership information.\nUse pagination parameters to control the number of results returned.\n\nRate limit: 60 requests per 30 seconds.",
595575
"operationId": "get_organizations_v1_organizations_get",
@@ -983,10 +963,7 @@
983963
}
984964
},
985965
"type": "object",
986-
"required": [
987-
"id",
988-
"organization_id"
989-
],
966+
"required": ["id", "organization_id"],
990967
"title": "AgentRunResponse",
991968
"description": "Represents an agent run in API responses"
992969
},
@@ -1138,9 +1115,7 @@
11381115
}
11391116
},
11401117
"type": "object",
1141-
"required": [
1142-
"prompt"
1143-
],
1118+
"required": ["prompt"],
11441119
"title": "CreateAgentRunInput"
11451120
},
11461121
"HTTPValidationError": {
@@ -1187,11 +1162,7 @@
11871162
}
11881163
},
11891164
"type": "object",
1190-
"required": [
1191-
"id",
1192-
"name",
1193-
"settings"
1194-
],
1165+
"required": ["id", "name", "settings"],
11951166
"title": "OrganizationResponse",
11961167
"description": "Represents an organization in API responses"
11971168
},
@@ -1268,13 +1239,7 @@
12681239
}
12691240
},
12701241
"type": "object",
1271-
"required": [
1272-
"items",
1273-
"total",
1274-
"page",
1275-
"size",
1276-
"pages"
1277-
],
1242+
"required": ["items", "total", "page", "size", "pages"],
12781243
"title": "Page[OrganizationResponse]"
12791244
},
12801245
"Page_UserResponse_": {
@@ -1304,13 +1269,7 @@
13041269
}
13051270
},
13061271
"type": "object",
1307-
"required": [
1308-
"items",
1309-
"total",
1310-
"page",
1311-
"size",
1312-
"pages"
1313-
],
1272+
"required": ["items", "total", "page", "size", "pages"],
13141273
"title": "Page[UserResponse]"
13151274
},
13161275
"PermissionsErrorResponse": {
@@ -1431,13 +1390,9 @@
14311390
}
14321391
},
14331392
"type": "object",
1434-
"required": [
1435-
"loc",
1436-
"msg",
1437-
"type"
1438-
],
1393+
"required": ["loc", "msg", "type"],
14391394
"title": "ValidationError"
14401395
}
14411396
}
14421397
}
1443-
}
1398+
}

0 commit comments

Comments
 (0)