Fix typo in 01_getting-started-with-the-python-client.md (#10843)

This commit is contained in:
n00b 2025-03-21 03:23:06 +09:00 committed by GitHub
parent fe8c06afb5
commit 30a0deb8f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -199,7 +199,7 @@ client.predict(
## Running jobs asynchronously
Oe should note that `.predict()` is a _blocking_ operation as it waits for the operation to complete before returning the prediction.
One should note that `.predict()` is a _blocking_ operation as it waits for the operation to complete before returning the prediction.
In many cases, you may be better off letting the job run in the background until you need the results of the prediction. You can do this by creating a `Job` instance using the `.submit()` method, and then later calling `.result()` on the job to get the result. For example: