sonilo-cli 0.8.1__tar.gz → 0.8.2__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.
- {sonilo_cli-0.8.1 → sonilo_cli-0.8.2}/PKG-INFO +3 -3
- {sonilo_cli-0.8.1 → sonilo_cli-0.8.2}/README.md +2 -2
- {sonilo_cli-0.8.1 → sonilo_cli-0.8.2}/pyproject.toml +1 -1
- {sonilo_cli-0.8.1 → sonilo_cli-0.8.2}/.gitignore +0 -0
- {sonilo_cli-0.8.1 → sonilo_cli-0.8.2}/LICENSE +0 -0
- {sonilo_cli-0.8.1 → sonilo_cli-0.8.2}/src/sonilo_cli/__init__.py +0 -0
- {sonilo_cli-0.8.1 → sonilo_cli-0.8.2}/src/sonilo_cli/__main__.py +0 -0
- {sonilo_cli-0.8.1 → sonilo_cli-0.8.2}/tests/__init__.py +0 -0
- {sonilo_cli-0.8.1 → sonilo_cli-0.8.2}/tests/test_cli.py +0 -0
- {sonilo_cli-0.8.1 → sonilo_cli-0.8.2}/tests/test_context7.py +0 -0
- {sonilo_cli-0.8.1 → sonilo_cli-0.8.2}/tests/test_smoke.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sonilo-cli
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.2
|
|
4
4
|
Summary: Command-line interface for the Sonilo API: generate music and sound effects from text or video
|
|
5
5
|
Project-URL: Repository, https://github.com/sonilo-ai/sonilo-python
|
|
6
6
|
Author: Sonilo AI
|
|
@@ -203,8 +203,8 @@ That is the one 402 a retry can never fix.
|
|
|
203
203
|
Two separate limits return `HTTP 429`, and they want opposite handling. The CLI prints the API's
|
|
204
204
|
own sentence, so the wording says which one you hit:
|
|
205
205
|
|
|
206
|
-
sonilo: HTTP 429: Rate limit exceeded: your account allows 60 requests per minute.
|
|
207
|
-
sonilo: HTTP 429: Too many concurrent generations: 5 of 5 in progress.
|
|
206
|
+
sonilo: HTTP 429: Rate limit exceeded: your account allows 60 requests per minute. Please retry after 1 minute. To raise your limit, please contact info@sonilo.com. (rate_limit_exceeded)
|
|
207
|
+
sonilo: HTTP 429: Too many concurrent generations: 5 of 5 in progress. Please wait for one to finish before starting another. To raise your limit, please contact info@sonilo.com. (rate_limit_exceeded)
|
|
208
208
|
|
|
209
209
|
The first means calls are going out too fast. The counter runs on a fixed 60-second window and
|
|
210
210
|
rejected calls count toward it too, so wait the window out instead of retrying inside it. The
|
|
@@ -187,8 +187,8 @@ That is the one 402 a retry can never fix.
|
|
|
187
187
|
Two separate limits return `HTTP 429`, and they want opposite handling. The CLI prints the API's
|
|
188
188
|
own sentence, so the wording says which one you hit:
|
|
189
189
|
|
|
190
|
-
sonilo: HTTP 429: Rate limit exceeded: your account allows 60 requests per minute.
|
|
191
|
-
sonilo: HTTP 429: Too many concurrent generations: 5 of 5 in progress.
|
|
190
|
+
sonilo: HTTP 429: Rate limit exceeded: your account allows 60 requests per minute. Please retry after 1 minute. To raise your limit, please contact info@sonilo.com. (rate_limit_exceeded)
|
|
191
|
+
sonilo: HTTP 429: Too many concurrent generations: 5 of 5 in progress. Please wait for one to finish before starting another. To raise your limit, please contact info@sonilo.com. (rate_limit_exceeded)
|
|
192
192
|
|
|
193
193
|
The first means calls are going out too fast. The counter runs on a fixed 60-second window and
|
|
194
194
|
rejected calls count toward it too, so wait the window out instead of retrying inside it. The
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|