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 CHANGED
@@ -10,7 +10,7 @@ npm install all-the-public-replicate-models
10
10
 
11
11
  ## Usage
12
12
 
13
- Basic usage:
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
@@ -0,0 +1,3 @@
1
+ import models from './models-lite.json' assert { type: "json" };
2
+
3
+ export default models;