Skip to content

Commit a39aafc

Browse files
cookbooks hot fixes
1 parent 92c6289 commit a39aafc

File tree

4 files changed

+46
-37
lines changed

4 files changed

+46
-37
lines changed

cookbooks/advanced/05-video-processing-with-natural-language.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@
9999
"source": [
100100
"import yaml\n",
101101
"\n",
102-
"cloudinary_api_key = \"your_cloudinary_api_key\"\n",
103-
"cloudinary_api_secret = \"your_cloudinary_api_secret\"\n",
104-
"cloudinary_cloud_name = \"your_cloudinary_cloud_name\"\n",
102+
"cloudinary_api_key = os.environ[\"CLOUDINARY_API_KEY\"]\n",
103+
"cloudinary_api_secret = os.environ[\"CLOUDINARY_API_SECRET\"]\n",
104+
"cloudinary_cloud_name = os.environ[\"CLOUDINARY_CLOUD_NAME\"]\n",
105105
"\n",
106106
"# Define the task\n",
107107
"task_def = yaml.safe_load(f\"\"\"\n",

0 commit comments

Comments
 (0)