Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .roe-main-release-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1-1-1
1-0-84
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ result carries `result["status"] == JobStatus.FAILURE` and
hierarchy above.

<!-- ROE-SDK:GENERATED-FRIENDLY-APIS:START -->
## SDK Operation Groups
## Generated Friendly APIs

Common operations are available directly on the SDK client.
This block is synced from `roe-main/roe-sdk/sdk_contract.yml` during SDK fan-out.

```python
engines = client.discovery.list_agent_engine_types()
Expand Down
36 changes: 21 additions & 15 deletions openapi/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -449,8 +449,8 @@ paths:
/v1/agents/{agent_id}/jobs/cancel-all/:
post:
operationId: agents_jobs_cancel_all_create
description: Cancel all running jobs for a given agent.
summary: Cancel all agent jobs
description: Cancel all running jobs for an agent.
summary: Cancel all running agent jobs (:cancelAll)
parameters:
- in: path
name: agent_id
Expand All @@ -471,22 +471,13 @@ paths:
- sdk
security:
- apiKeyAuth: []
deprecated: true
responses:
'204':
description: All running agent jobs cancelled successfully
'403':
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorDetailResponse'
description: Access forbidden
'404':
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorDetailResponse'
description: Agent not found
$ref: '#/components/schemas/AgentJobCancelAllResponse'
description: ''
/v1/agents/{agent_id}/versions/:
get:
operationId: agents_versions_list
Expand Down Expand Up @@ -918,7 +909,7 @@ paths:
accepts_multiple_files: null
engine_config:
text: ${text}
model: gpt-5.5-2026-04-23
model: gpt-4.1-2025-04-14
instruction: Process the text
temperature: '0.0'
output_schema: '{"type":"string","description":"The result"}'
Expand Down Expand Up @@ -3399,6 +3390,21 @@ components:
- data_type
- description
- key
AgentJobCancelAllResponse:
type: object
properties:
task_id:
type:
- string
- 'null'
targeted_count:
type: integer
note:
type: string
required:
- note
- targeted_count
- task_id
AgentJobDeleteDataResponse:
type: object
description: Response payload of purge_agent_job_data (delete-data and :purgeData).
Expand Down
12 changes: 6 additions & 6 deletions openapi/readme_blocks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
blocks:
generated_friendly_apis:
python: |
## SDK Operation Groups
## Generated Friendly APIs

Common operations are available directly on the SDK client.
This block is synced from `roe-main/roe-sdk/sdk_contract.yml` during SDK fan-out.

```python
engines = client.discovery.list_agent_engine_types()
Expand All @@ -19,9 +19,9 @@ blocks:
)
```
typescript: |
## SDK Operation Groups
## Generated Friendly APIs

Common operations are available directly on the SDK client.
This block is synced from `roe-main/roe-sdk/sdk_contract.yml` during SDK fan-out.

```typescript
const engines = await client.discovery.listAgentEngineTypes();
Expand All @@ -34,9 +34,9 @@ blocks:
});
```
go: |
## SDK Operation Groups
## Generated Friendly APIs

Common operations are available directly on the SDK client.
This block is synced from `roe-main/roe-sdk/sdk_contract.yml` during SDK fan-out.

```go
engines, err := client.Discovery.ListAgentEngineTypes()
Expand Down
Loading
Loading