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
fix: changes positional to named pararameters in Video samples (#4017)
Changes calls to `VideoClient.annotate_video()` so that GCS URIs are provided as named parameters.
Example:
```
operation = video_client.annotate_video(path, features=features)
```
Becomes:
```
operation = video_client.annotate_video(input_uri=path, features=features)
```
0 commit comments