Package ai.extend.resources.workflows
Class AsyncWorkflowsClient
- java.lang.Object
-
- ai.extend.resources.workflows.AsyncWorkflowsClient
-
public class AsyncWorkflowsClient extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected ClientOptionsclientOptions
-
Constructor Summary
Constructors Constructor Description AsyncWorkflowsClient(ClientOptions clientOptions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.concurrent.CompletableFuture<Workflow>create(WorkflowsCreateRequest request)Create a new workflow in Extend.java.util.concurrent.CompletableFuture<Workflow>create(WorkflowsCreateRequest request, RequestOptions requestOptions)Create a new workflow in Extend.AsyncRawWorkflowsClientwithRawResponse()Get responses with HTTP metadata like headers
-
-
-
Field Detail
-
clientOptions
protected final ClientOptions clientOptions
-
-
Constructor Detail
-
AsyncWorkflowsClient
public AsyncWorkflowsClient(ClientOptions clientOptions)
-
-
Method Detail
-
withRawResponse
public AsyncRawWorkflowsClient withRawResponse()
Get responses with HTTP metadata like headers
-
create
public java.util.concurrent.CompletableFuture<Workflow> create(WorkflowsCreateRequest request)
Create a new workflow in Extend. Workflows are sequences of steps that process files and data in a specific order to achieve a desired outcome.This endpoint will create a new workflow in Extend, which can then be configured and deployed. Typically, workflows are created from our UI, however this endpoint can be used to create workflows programmatically. Configuration of the flow still needs to be done in the dashboard.
-
create
public java.util.concurrent.CompletableFuture<Workflow> create(WorkflowsCreateRequest request, RequestOptions requestOptions)
Create a new workflow in Extend. Workflows are sequences of steps that process files and data in a specific order to achieve a desired outcome.This endpoint will create a new workflow in Extend, which can then be configured and deployed. Typically, workflows are created from our UI, however this endpoint can be used to create workflows programmatically. Configuration of the flow still needs to be done in the dashboard.
-
-