Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- src/config.py +2 -1
src/config.py
CHANGED
|
@@ -179,7 +179,8 @@ class Config:
|
|
| 179 |
@property
|
| 180 |
def qdrant_api_key(self) -> str:
|
| 181 |
"""Get Qdrant API key from environment."""
|
| 182 |
-
|
|
|
|
| 183 |
|
| 184 |
@property
|
| 185 |
def document_processing_config(self) -> Dict[str, Any]:
|
|
|
|
| 179 |
@property
|
| 180 |
def qdrant_api_key(self) -> str:
|
| 181 |
"""Get Qdrant API key from environment."""
|
| 182 |
+
QDRANT_API_KEY=os.getenv('QDRANT_API_KEY', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2Nlc3MiOiJtIn0.L6Xwubquqwa9CXj3kVn9jiv64Cbe85vRdLv_LltuzZg')
|
| 183 |
+
return QDRANT_API_KEY
|
| 184 |
|
| 185 |
@property
|
| 186 |
def document_processing_config(self) -> Dict[str, Any]:
|