We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4517596 commit c0f0422Copy full SHA for c0f0422
index.d.ts
@@ -19,13 +19,13 @@ declare module 'replicate' {
19
url: string;
20
owner: string;
21
name: string;
22
- description: string;
+ description?: string;
23
visibility: 'public' | 'private';
24
- github_url: string;
25
- paper_url: string;
26
- license_url: string;
+ github_url?: string;
+ paper_url?: string;
+ license_url?: string;
27
run_count: number;
28
- cover_image_url: string;
+ cover_image_url?: string;
29
default_example?: Prediction;
30
latest_version?: ModelVersion;
31
}
@@ -42,7 +42,7 @@ declare module 'replicate' {
42
status: Status;
43
version: string;
44
input: object;
45
- output: any;
+ output?: any;
46
source: 'api' | 'web';
47
error?: any;
48
logs?: string;
0 commit comments