Files
IngestRSS/src/article_storage/initialize.py
Charles E. Gormley 02833626c0 9/2
2024-09-02 15:02:41 -04:00

9 lines
182 B
Python

from pinecone import Pinecone
import os
from dotenv import load_dotenv
load_dotenv()
# Set up Pinecone client
api_key = os.getenv("PINCEONE_API_KEY")
pc = Pinecone(api_key=api_key)