Additional resources and tips

This commit is contained in:
Edward Donner
2025-02-15 08:31:06 -05:00
parent 289a1b9bd1
commit ec4ada6456
14 changed files with 133 additions and 81 deletions

View File

@@ -53,7 +53,7 @@
"# Load environment variables in a file called .env\n",
"# Print the key prefixes to help with any debugging\n",
"\n",
"load_dotenv()\n",
"load_dotenv(override=True)\n",
"openai_api_key = os.getenv('OPENAI_API_KEY')\n",
"anthropic_api_key = os.getenv('ANTHROPIC_API_KEY')\n",
"google_api_key = os.getenv('GOOGLE_API_KEY')\n",

View File

@@ -33,7 +33,7 @@
"# Load environment variables in a file called .env\n",
"# Print the key prefixes to help with any debugging\n",
"\n",
"load_dotenv()\n",
"load_dotenv(override=True)\n",
"openai_api_key = os.getenv('OPENAI_API_KEY')\n",
"anthropic_api_key = os.getenv('ANTHROPIC_API_KEY')\n",
"google_api_key = os.getenv('GOOGLE_API_KEY')\n",

View File

@@ -35,7 +35,7 @@
"source": [
"# Initialization\n",
"\n",
"load_dotenv()\n",
"load_dotenv(override=True)\n",
"\n",
"openai_api_key = os.getenv('OPENAI_API_KEY')\n",
"if openai_api_key:\n",

View File

@@ -35,7 +35,7 @@
"source": [
"# Initialization\n",
"\n",
"load_dotenv()\n",
"load_dotenv(override=True)\n",
"\n",
"openai_api_key = os.getenv('OPENAI_API_KEY')\n",
"if openai_api_key:\n",