From 69044238120e67d587db1e41d484492923bdd62b Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Thu, 29 May 2025 16:08:54 -0700 Subject: [PATCH] Doc update: find your api key in .env (#2532) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3d214c78..7b1f30d2 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,7 @@ print(task) Or your local Skyvern service from step 2: ```python +# Find your API KEY in .env skyvern = Skyvern(base_url="http://localhost:8000", api_key="LOCAL SKYVERN API KEY") task = await skyvern.run_task(prompt="Find the top post on hackernews today") print(task)