ProjectsClient
adaline.projects lists and manages the projects in your workspace. Every method is async.
Access
adaline_api:
list()
List all projects the API key has access to.Returns
ListProjectsResponse with { data: list[Project] }.
Example
get()
Get a single project by ID.Parameters
| Name | Type | Required | Description |
|---|---|---|---|
project_id | str | Yes | Project identifier. |
Example
update()
Update a project’s title and/or icon. At least one field must be provided.Parameters
| Name | Type | Required | Description |
|---|---|---|---|
project_id | str | Yes | Project identifier. |
project | UpdateProjectRequest | Yes | Fields to update (title?, icon?). |
Example
See Also
- Adaline class
- PromptsClient —
list(project_id=...)is the most common follow-up call - API reference: List projects · Get project · Update project