all-the-public-replicate-models 1.0.1 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -1
- package/lite.mjs +3 -0
- package/models-lite.json +9162 -0
- package/models.json +243 -243
- package/package.json +9 -2
- package/script/build.js +14 -1
- package/test.js +2 -2
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ npm install all-the-public-replicate-models
|
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Full-bodied usage (all the metadata, ~17MB)
|
|
14
14
|
|
|
15
15
|
```js
|
|
16
16
|
import models from 'all-the-public-replicate-models'
|
|
@@ -18,6 +18,14 @@ import models from 'all-the-public-replicate-models'
|
|
|
18
18
|
console.log(models)
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
+
Lite usage (just the basic metadata, ~375K):
|
|
22
|
+
|
|
23
|
+
```js
|
|
24
|
+
import models from 'all-the-public-replicate-models/lite'
|
|
25
|
+
|
|
26
|
+
console.log(models)
|
|
27
|
+
```
|
|
28
|
+
|
|
21
29
|
Find the top 10 models by run count:
|
|
22
30
|
|
|
23
31
|
```js
|
package/lite.mjs
ADDED