File tree 5 files changed +327
-151
lines changed
5 files changed +327
-151
lines changed Original file line number Diff line number Diff line change @@ -455,6 +455,18 @@ const response = await replicate.models.list();
455
455
}
456
456
```
457
457
458
+ ### ` replicate.models.search `
459
+
460
+ Search for public models on Replicate.
461
+
462
+ ``` js
463
+ const response = await replicate .models .search (query);
464
+ ```
465
+
466
+ | name | type | description |
467
+ | ------- | ------ | -------------------------------------- |
468
+ | ` query ` | string | ** Required** . The search query string. |
469
+
458
470
### ` replicate.models.create `
459
471
460
472
Create a new public or private model.
Original file line number Diff line number Diff line change @@ -281,6 +281,7 @@ declare module "replicate" {
281
281
version_id : string
282
282
) : Promise < ModelVersion > ;
283
283
} ;
284
+ search ( query : string ) : Promise < Page < Model > > ;
284
285
} ;
285
286
286
287
predictions : {
Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ class Replicate {
98
98
list : models . versions . list . bind ( this ) ,
99
99
get : models . versions . get . bind ( this ) ,
100
100
} ,
101
+ search : models . search . bind ( this ) ,
101
102
} ;
102
103
103
104
this . predictions = {
You can’t perform that action at this time.
0 commit comments