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
Copy file name to clipboardExpand all lines: README.md
+90-21Lines changed: 90 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -10,24 +10,17 @@ Welcome to the SaladCloud Transcription SDK documentation. This guide will help
10
10
11
11
The Transcription REST API. Please refer to the [Transcription API Documentation](https://docs.salad.com/reference/transcribe/inference_endpoints/create-an-inference-endpoint-job) for more details.
12
12
13
-
## Installation
14
-
15
-
To get started with the SDK, we recommend installing using `npm` or `yarn`:
The SaladCloud Transcription SDK is built to work seamlessly in both Node.js and browser environments.
79
+
80
+
- Node.js:
81
+
Full support for local file operations and heavy file I/O makes the SDK ideal for server-side applications and CLI tools.
82
+
83
+
- Browser Limitations:
84
+
Browsers do not have access to the local file system like Node.js does. Therefore, any attempt to perform local file I/O in the browser will be explicitly rejected.
85
+
63
86
## Sample Usage
64
87
65
88
Below is a comprehensive example demonstrating how to authenticate and transcribe:
Polls the transcription status until the job reaches a final state ("succeeded" or "failed"), a timeout is reached, or the operation is aborted.
283
+
Polls the transcription status every 5 seconds until one of the following occurs: the job reaches a final state (either "succeeded" or "failed"), it times out after 3 minutes, or the operation is aborted.
0 commit comments