File size: 243 Bytes
1d133a1
 
2cb5449
fba5edb
c277c70
2cb5449
50fe3fe
 
2cb5449
50fe3fe
1
2
3
4
5
6
7
8
9
10
11
import os

# Fetch the API key from the environment
openai_api_key = os.getenv("OPENAI_API_KEY")

# Check if the key is set and print accordingly
if openai_api_key:
    print("OPEN_API_KEY is set.")
else:
    print("OPEN_API_KEY is not set.")