-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunloop-agents-api-openapi.yml
More file actions
491 lines (491 loc) · 15 KB
/
runloop-agents-api-openapi.yml
File metadata and controls
491 lines (491 loc) · 15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
openapi: 3.0.3
info:
title: Runloop Agents API
version: '0.1'
description: "Register, version, and mount Agents \u2014 packaged agent definitions sourced from Git, npm, pip, or storage\
\ objects that can be installed on Devboxes for fast, reproducible agent execution."
contact:
name: Runloop AI Support
url: https://runloop.ai
email: support@runloop.ai
servers:
- url: https://api.runloop.ai
description: Runloop API
variables: {}
tags:
- name: agents
paths:
/v1/agents:
post:
tags:
- agents
summary: Create an Agent.
description: Create a new Agent with a name and optional public visibility. The Agent will be assigned a unique ID.
operationId: createAgent
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AgentCreateParameters'
required: false
responses:
'200':
description: Agent created successfully. Returns the Agent with metadata.
content:
application/json:
schema:
$ref: '#/components/schemas/AgentView'
'400':
description: Bad request. Invalid name or parameters.
'401':
description: Unauthorized. Invalid or missing authentication.
'403':
description: Forbidden. Account does not have devbox capability.
'500':
description: Internal server error.
deprecated: false
get:
tags:
- agents
summary: List Agents.
description: List all Agents for the authenticated account with pagination support.
operationId: listAgents
parameters:
- name: limit
in: query
description: The limit of items to return. Default is 20. Max is 5000.
required: false
deprecated: false
allowEmptyValue: true
schema:
type: integer
format: int32
- name: starting_after
in: query
description: Load the next page of data starting after the item with the given ID.
required: false
deprecated: false
allowEmptyValue: true
schema:
type: string
- name: name
in: query
description: Filter agents by name (partial match supported).
required: false
deprecated: false
allowEmptyValue: true
schema:
type: string
- name: is_public
in: query
description: Filter agents by public visibility.
required: false
deprecated: false
allowEmptyValue: true
schema:
type: boolean
- name: search
in: query
description: Search by agent ID or name.
required: false
deprecated: false
allowEmptyValue: true
schema:
type: string
- name: version
in: query
description: Filter by version. Use 'latest' to get the most recently created agent.
required: false
deprecated: false
allowEmptyValue: true
schema:
type: string
- name: include_total_count
in: query
description: If true (default), includes total_count in the response. Set to false to skip the count query for better
performance on large datasets.
required: false
deprecated: false
allowEmptyValue: true
schema:
type: boolean
responses:
'200':
description: Successfully retrieved list of Agents.
content:
application/json:
schema:
$ref: '#/components/schemas/AgentListView'
'401':
description: Unauthorized. Invalid or missing authentication.
'403':
description: Forbidden. Account does not have devbox capability.
'500':
description: Internal server error.
deprecated: false
/v1/agents/devbox_counts:
get:
tags:
- agents
summary: Get Devbox counts by Agent.
description: Returns devbox counts grouped by agent name. This endpoint efficiently aggregates devbox counts for all
agents in a single request, avoiding N+1 query patterns.
operationId: getAgentDevboxCounts
parameters: []
responses:
'200':
description: Successfully retrieved devbox counts by agent name.
content:
application/json:
schema:
$ref: '#/components/schemas/AgentDevboxCountsView'
'401':
description: Unauthorized. Invalid or missing authentication.
'403':
description: Forbidden. Account does not have devbox capability.
'500':
description: Internal server error.
deprecated: false
/v1/agents/list_public:
get:
tags:
- agents
summary: List Public Agents.
description: List all public Agents with pagination support.
operationId: listPublicAgents
parameters:
- name: limit
in: query
description: The limit of items to return. Default is 20. Max is 5000.
required: false
deprecated: false
allowEmptyValue: true
schema:
type: integer
format: int32
- name: starting_after
in: query
description: Load the next page of data starting after the item with the given ID.
required: false
deprecated: false
allowEmptyValue: true
schema:
type: string
- name: name
in: query
description: Filter agents by name (partial match supported).
required: false
deprecated: false
allowEmptyValue: true
schema:
type: string
- name: search
in: query
description: Search by agent ID or name.
required: false
deprecated: false
allowEmptyValue: true
schema:
type: string
- name: version
in: query
description: Filter by version. Use 'latest' to get the most recently created agent.
required: false
deprecated: false
allowEmptyValue: true
schema:
type: string
- name: include_total_count
in: query
description: If true (default), includes total_count in the response. Set to false to skip the count query for better
performance on large datasets.
required: false
deprecated: false
allowEmptyValue: true
schema:
type: boolean
responses:
'200':
description: Successfully retrieved list of public Agents.
content:
application/json:
schema:
$ref: '#/components/schemas/AgentListView'
'401':
description: Unauthorized. Invalid or missing authentication.
'403':
description: Forbidden. Account does not have devbox capability.
'500':
description: Internal server error.
deprecated: false
/v1/agents/{id}:
get:
tags:
- agents
summary: Get an Agent.
description: Retrieve a specific Agent by its unique identifier.
operationId: getAgent
parameters:
- name: id
in: path
description: The unique identifier of the Agent to retrieve.
required: true
deprecated: false
allowEmptyValue: false
schema:
type: string
responses:
'200':
description: Agent retrieved successfully.
content:
application/json:
schema:
$ref: '#/components/schemas/AgentView'
'401':
description: Unauthorized. Invalid or missing authentication.
'403':
description: Forbidden. Account does not have devbox capability.
'404':
description: Agent not found.
'500':
description: Internal server error.
deprecated: false
/v1/agents/{id}/delete:
post:
tags:
- agents
summary: Delete an Agent.
description: Delete an Agent by its unique identifier. The Agent will be permanently removed.
operationId: deleteAgent
parameters:
- name: id
in: path
description: The unique identifier of the Agent to delete.
required: true
deprecated: false
allowEmptyValue: false
schema:
type: string
responses:
'200':
description: Agent deleted successfully.
content:
application/json:
schema:
$ref: '#/components/schemas/EmptyRecord'
'401':
description: Unauthorized. Invalid or missing authentication.
'403':
description: Forbidden. Account does not have devbox capability.
'404':
description: Agent not found.
'500':
description: Internal server error.
deprecated: false
components:
schemas:
AgentCreateParameters:
type: object
additionalProperties: false
description: Parameters for creating a new Agent.
properties:
name:
type: string
description: The name of the Agent.
version:
type: string
nullable: true
description: Optional version identifier for the Agent. For npm/pip sources this is typically a semver string (e.g.
'2.0.65'). For git sources it can be a branch or tag. Semantics are user-defined for object sources.
source:
$ref: '#/components/schemas/AgentSource'
nullable: true
description: The source configuration for the Agent.
required:
- name
AgentDevboxCountsView:
type: object
additionalProperties: false
description: Devbox counts grouped by agent name. Used to efficiently fetch devbox counts for multiple agents in a single
request.
properties:
counts:
type: object
additionalProperties:
type: integer
format: int32
description: Map of agent name to devbox count. Each key is an agent name, and the value is the count of devboxes
associated with that agent.
total_count:
type: integer
format: int32
description: Total count of devboxes across all agents in the result.
required:
- counts
- total_count
AgentListView:
type: object
additionalProperties: false
description: A paginated list of Agents.
properties:
agents:
type: array
items:
$ref: '#/components/schemas/AgentView'
description: The list of Agents.
has_more:
type: boolean
description: Whether there are more Agents to fetch.
total_count:
type: integer
format: int32
nullable: true
description: The total count of Agents.
required:
- agents
- has_more
AgentSource:
type: object
additionalProperties: false
description: Agent source configuration.
properties:
type:
type: string
description: 'Source type: npm, pip, object, or git'
npm:
$ref: '#/components/schemas/NpmSource'
nullable: true
description: NPM source configuration
pip:
$ref: '#/components/schemas/PipSource'
nullable: true
description: Pip source configuration
object:
$ref: '#/components/schemas/ObjectSource'
nullable: true
description: Object store source configuration
git:
$ref: '#/components/schemas/GitSource'
nullable: true
description: Git source configuration
required:
- type
AgentView:
type: object
additionalProperties: false
description: An Agent represents a registered AI agent entity.
properties:
id:
type: string
description: The unique identifier of the Agent.
name:
type: string
description: The name of the Agent.
version:
type: string
nullable: true
description: Optional version identifier for the Agent. For npm/pip sources this is typically a semver string (e.g.
'2.0.65'). For git sources it can be a branch or tag. Omitted for object sources or when not provided.
create_time_ms:
type: integer
format: int64
description: The creation time of the Agent (Unix timestamp milliseconds).
is_public:
type: boolean
description: Whether the Agent is publicly accessible.
source:
$ref: '#/components/schemas/AgentSource'
nullable: true
description: The source configuration for the Agent.
required:
- id
- name
- create_time_ms
- is_public
EmptyRecord:
type: object
additionalProperties: false
properties: {}
GitSource:
type: object
additionalProperties: false
description: Git-based agent source configuration.
properties:
repository:
type: string
description: Git repository URL
ref:
type: string
nullable: true
description: Optional Git ref (branch/tag/commit), defaults to main/HEAD
agent_setup:
type: array
items:
type: string
nullable: true
description: Setup commands to run after cloning
required:
- repository
NpmSource:
type: object
additionalProperties: false
description: NPM-based agent source configuration.
properties:
package_name:
type: string
description: NPM package name
registry_url:
type: string
nullable: true
description: NPM registry URL
agent_setup:
type: array
items:
type: string
nullable: true
description: Setup commands to run after installation
required:
- package_name
ObjectSource:
type: object
additionalProperties: false
description: Object store agent source configuration.
properties:
object_id:
type: string
description: Object ID
agent_setup:
type: array
items:
type: string
nullable: true
description: Setup commands to run after unpacking
required:
- object_id
PipSource:
type: object
additionalProperties: false
description: Pip-based agent source configuration.
properties:
package_name:
type: string
description: Pip package name
registry_url:
type: string
nullable: true
description: Pip registry URL
agent_setup:
type: array
items:
type: string
nullable: true
description: Setup commands to run after installation
required:
- package_name
securitySchemes:
bearerAuth:
scheme: bearer
type: http
security:
- bearerAuth: []