runapi-core 0.1.4__tar.gz → 0.1.6__tar.gz
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.
- {runapi_core-0.1.4 → runapi_core-0.1.6}/PKG-INFO +1 -1
- {runapi_core-0.1.4 → runapi_core-0.1.6}/src/runapi/core/contract_gen.py +52 -2
- runapi_core-0.1.6/src/runapi/core/version.py +1 -0
- runapi_core-0.1.4/src/runapi/core/version.py +0 -1
- {runapi_core-0.1.4 → runapi_core-0.1.6}/README.md +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/pyproject.toml +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/src/runapi/core/__init__.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/src/runapi/core/auth.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/src/runapi/core/config.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/src/runapi/core/constants.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/src/runapi/core/errors.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/src/runapi/core/files.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/src/runapi/core/http_client.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/src/runapi/core/models.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/src/runapi/core/multipart.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/src/runapi/core/options.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/src/runapi/core/polling.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/src/runapi/core/py.typed +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/src/runapi/core/resource.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/src/runapi/core/response.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/tests/test_auth.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/tests/test_config.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/tests/test_errors.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/tests/test_files.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/tests/test_http_client.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/tests/test_models.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/tests/test_polling.py +0 -0
- {runapi_core-0.1.4 → runapi_core-0.1.6}/tests/test_resource.py +0 -0
|
@@ -211,7 +211,7 @@ CONTRACT = {
|
|
|
211
211
|
}
|
|
212
212
|
},
|
|
213
213
|
"grok-imagine/image-to-video": {
|
|
214
|
-
"models": ["grok-imagine-image-to-video", "grok-imagine-video-1.5-preview"],
|
|
214
|
+
"models": ["grok-imagine-image-to-video", "grok-imagine-video-1.5-fast", "grok-imagine-video-1.5-preview"],
|
|
215
215
|
"fields_by_model": {
|
|
216
216
|
"grok-imagine-image-to-video": {
|
|
217
217
|
"aspect_ratio": {
|
|
@@ -224,6 +224,14 @@ CONTRACT = {
|
|
|
224
224
|
"enum": ["480p", "720p"]
|
|
225
225
|
}
|
|
226
226
|
},
|
|
227
|
+
"grok-imagine-video-1.5-fast": {
|
|
228
|
+
"aspect_ratio": {
|
|
229
|
+
"enum": ["1:1", "16:9", "9:16", "3:2", "2:3"]
|
|
230
|
+
},
|
|
231
|
+
"output_resolution": {
|
|
232
|
+
"enum": ["480p", "720p"]
|
|
233
|
+
}
|
|
234
|
+
},
|
|
227
235
|
"grok-imagine-video-1.5-preview": {
|
|
228
236
|
"aspect_ratio": {
|
|
229
237
|
"enum": ["1:1", "16:9", "9:16", "3:2", "2:3", "auto"]
|
|
@@ -245,7 +253,7 @@ CONTRACT = {
|
|
|
245
253
|
}
|
|
246
254
|
},
|
|
247
255
|
"grok-imagine/text-to-video": {
|
|
248
|
-
"models": ["grok-imagine-text-to-video", "grok-imagine-video-1.5-preview"],
|
|
256
|
+
"models": ["grok-imagine-text-to-video", "grok-imagine-video-1.5-fast", "grok-imagine-video-1.5-preview"],
|
|
249
257
|
"fields_by_model": {
|
|
250
258
|
"grok-imagine-text-to-video": {
|
|
251
259
|
"aspect_ratio": {
|
|
@@ -258,6 +266,14 @@ CONTRACT = {
|
|
|
258
266
|
"enum": ["480p", "720p"]
|
|
259
267
|
}
|
|
260
268
|
},
|
|
269
|
+
"grok-imagine-video-1.5-fast": {
|
|
270
|
+
"aspect_ratio": {
|
|
271
|
+
"enum": ["1:1", "16:9", "9:16", "3:2", "2:3"]
|
|
272
|
+
},
|
|
273
|
+
"output_resolution": {
|
|
274
|
+
"enum": ["480p", "720p"]
|
|
275
|
+
}
|
|
276
|
+
},
|
|
261
277
|
"grok-imagine-video-1.5-preview": {
|
|
262
278
|
"aspect_ratio": {
|
|
263
279
|
"enum": ["1:1", "16:9", "9:16", "3:2", "2:3", "auto"]
|
|
@@ -621,6 +637,40 @@ CONTRACT = {
|
|
|
621
637
|
"luma-modify-video": {}
|
|
622
638
|
}
|
|
623
639
|
},
|
|
640
|
+
"midjourney/edit-image": {
|
|
641
|
+
"models": ["midjourney-edit-image"],
|
|
642
|
+
"fields_by_model": {
|
|
643
|
+
"midjourney-edit-image": {}
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
"midjourney/get-seed": {
|
|
647
|
+
"models": [],
|
|
648
|
+
"fields_by_model": {
|
|
649
|
+
"_": {}
|
|
650
|
+
}
|
|
651
|
+
},
|
|
652
|
+
"midjourney/image-to-prompt": {
|
|
653
|
+
"models": [],
|
|
654
|
+
"fields_by_model": {
|
|
655
|
+
"_": {}
|
|
656
|
+
}
|
|
657
|
+
},
|
|
658
|
+
"midjourney/image-to-video": {
|
|
659
|
+
"models": ["midjourney-image-to-video"],
|
|
660
|
+
"fields_by_model": {
|
|
661
|
+
"midjourney-image-to-video": {
|
|
662
|
+
"output_resolution": {
|
|
663
|
+
"enum": ["480p"]
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
"midjourney/text-to-image": {
|
|
669
|
+
"models": ["midjourney-v8.1"],
|
|
670
|
+
"fields_by_model": {
|
|
671
|
+
"midjourney-v8.1": {}
|
|
672
|
+
}
|
|
673
|
+
},
|
|
624
674
|
"nano-banana/edit-image": {
|
|
625
675
|
"models": ["nano-banana-2-lite", "nano-banana-edit"],
|
|
626
676
|
"fields_by_model": {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.6"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.4"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|