mirror of
https://github.com/aljazceru/IngestRSS.git
synced 2025-12-18 06:24:21 +01:00
9 lines
182 B
Python
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) |