Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix waiting behavior for run and predictions.create #314

Closed
wants to merge 2 commits into from
Closed
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
10 changes: 5 additions & 5 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ declare module "replicate" {
signal?: AbortSignal;
},
progress?: (prediction: Prediction) => void
): Promise<object>;
): Promise<Prediction | any>;

stream(
identifier: `${string}/${string}` | `${string}/${string}:${string}`,
Expand Down Expand Up @@ -215,9 +215,9 @@ declare module "replicate" {
stream?: boolean;
webhook?: string;
webhook_events_filter?: WebhookEventType[];
block?: boolean;
wait?: boolean | number | { mode?: "poll"; interval?: number };
}
): Promise<Prediction>;
): Promise<Prediction | any>;
};
get(
deployment_owner: string,
Expand Down Expand Up @@ -304,9 +304,9 @@ declare module "replicate" {
stream?: boolean;
webhook?: string;
webhook_events_filter?: WebhookEventType[];
block?: boolean;
wait?: boolean | number | { mode?: "poll"; interval?: number };
} & ({ version: string } | { model: string })
): Promise<Prediction>;
): Promise<Prediction | any>;
get(prediction_id: string): Promise<Prediction>;
cancel(prediction_id: string): Promise<Prediction>;
list(): Promise<Page<Prediction>>;
Expand Down
9 changes: 9 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,15 @@ class Replicate {
throw new Error("Invalid model version identifier");
}

// When `wait` is set, the server may respond
// with the prediction output directly.
// If it hasn't finished, the prediction object is returned
// with an `id` property that can be used to poll for completion.
if (wait && !("id" in prediction)) {
const output = prediction;
return output;
}

// Call progress callback with the initial prediction object
if (progress) {
progress(prediction);
Expand Down