garvitcpp commited on
Commit
5f1d522
·
verified ·
1 Parent(s): 44cfc28

Update app/core/config.py

Browse files
Files changed (1) hide show
  1. app/core/config.py +5 -0
app/core/config.py CHANGED
@@ -13,6 +13,11 @@ class Settings(BaseSettings):
13
 
14
  # API Keys
15
  gemini_api_key: str = os.getenv("GEMINI_API_KEY", "")
 
 
 
 
 
16
 
17
  # App
18
  environment: str = os.getenv("ENVIRONMENT", "production")
 
13
 
14
  # API Keys
15
  gemini_api_key: str = os.getenv("GEMINI_API_KEY", "")
16
+ pinecone_api_key: str = os.getenv("PINECONE_API_KEY", "")
17
+
18
+ # Pinecone Configuration
19
+ pinecone_index_name: str = os.getenv("PINECONE_INDEX_NAME", "qodex-embeddings")
20
+ pinecone_environment: str = os.getenv("PINECONE_ENVIRONMENT", "gcp-starter")
21
 
22
  # App
23
  environment: str = os.getenv("ENVIRONMENT", "production")