(Community): Added API Key for Jina Search API Wrapper (#29622)

- **Description:** Simple change for adding the API Key for Jina Search
API Wrapper
- **Issue:** #29596
This commit is contained in:
Mohammad Mohtashim
2025-02-13 09:12:07 +05:00
committed by GitHub
parent f1c66a3040
commit 96ad09fa2d
5 changed files with 51 additions and 4 deletions

View File

@@ -64,7 +64,10 @@
"outputs": [],
"source": [
"import getpass\n",
"import os"
"import os\n",
"\n",
"if not os.environ.get(\"JINA_API_KEY\"):\n",
" os.environ[\"JINA_API_KEY\"] = getpass.getpass(\"Jina API key:\\n\")"
]
},
{