You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- The callback program will send a POST request containing task data after the task is completed.
146
149
- You can view the callback information in the console by referring to the callback test interface in the API documentation.
147
150
- For example: `http://localhost/api/whisper/callback/test`
148
-
- `priority` (TaskPriority): Task priority, default is `TaskPriority.NORMAL`.
151
+
- `priority` (TaskPriority): Task priority, default is `normal`, specific values are as follows:
152
+
- `low`: Low priority, use lowercase letters.
153
+
- `normal`: Normal priority, use lowercase letters.
154
+
- `high`: High priority, use lowercase letters.
149
155
- `platform` (Optional[str]): Specify the platform, e.g., 'tiktok' or 'douyin', for easy query and classification of tasks from different platforms in the database, default is empty, can be customized according to needs.
150
156
- `language` (str): Specify the output language, e.g., 'en' or 'zh', leave empty for auto-detection.
151
157
- `temperature` (str): Sampling temperature, can be a single value or multiple values separated by commas, which will be converted to a list on the backend, e.g., "0.8,1.0".
Copy file name to clipboardExpand all lines: config/settings.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ class FastAPISettings:
46
46
# 项目描述 | Project description
47
47
description: str="⚡ A high-performance asynchronous API for Automatic Speech Recognition (ASR) and translation. No need to purchase the Whisper API—perform inference using a locally running Whisper model with support for multi-GPU concurrency and designed for distributed deployment. It also includes built-in crawlers for social media platforms like TikTok and Douyin, enabling seamless media processing from multiple social platforms. This provides a powerful and scalable solution for automated media content data processing."
0 commit comments