Skip to content
Merged
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-0-86
1-0-87
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
A Python SDK for the [Roe](https://www.roe-ai.com/) API.

<!-- ROE-SDK:RELEASE-BANNER:START -->
> **v1.1.3** - SDK operation coverage is synchronized across Python,
> **v1.1.4** - SDK operation coverage is synchronized across Python,
> TypeScript, and Go. See `SDK_EXAMPLES.md` for copy-ready examples and
> use cases.
<!-- ROE-SDK:RELEASE-BANNER:END -->
Expand Down
60 changes: 58 additions & 2 deletions openapi/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,31 @@ paths:
summary: List agents or create a new agent.
parameters:
- in: query
name: engine_class_id
name: created_from
schema:
type: string
format: date-time
description: Filter agents created at or after this timestamp.
- in: query
name: created_to
schema:
type: string
description: Filter agents by engine type.
format: date-time
description: Filter agents created at or before this timestamp.
- in: query
name: creator_id
schema:
type: array
items:
type: integer
description: Filter agents by creator user ID. Can be provided multiple times.
- in: query
name: engine_class_id
schema:
type: array
items:
type: string
description: Filter agents by engine type. Can be provided multiple times.
- in: query
name: exclude_engine_class_id
schema:
Expand All @@ -26,6 +47,41 @@ paths:
type: boolean
description: 'Include job_count and most_recent_job in response (default:
true). Set to false for faster response.'
- in: query
name: include_untagged
schema:
type: boolean
description: Include agents with no visible user tags. Hidden agent-group
tags are ignored.
- in: query
name: job_count_max
schema:
type: integer
description: Filter agents whose served job count is less than or equal to
this value.
- in: query
name: job_count_min
schema:
type: integer
description: Filter agents whose served job count is greater than or equal
to this value.
- in: query
name: most_recent_job_from
schema:
type: string
format: date-time
description: Filter agents whose most recent job was at or after this timestamp.
- in: query
name: most_recent_job_to
schema:
type: string
format: date-time
description: Filter agents whose most recent job was at or before this timestamp.
- in: query
name: name
schema:
type: string
description: Filter agents by a case-insensitive substring of the agent name.
- in: query
name: ordering
schema:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "roe-ai"
version = "1.1.3"
version = "1.1.4"
authors = [
{ name = "Roe", email = "founders@roe-ai.com" },
]
Expand Down
Loading
Loading