Spaces:
Sleeping
Sleeping
chore: Add python-dotenv to project dependencies
Browse files- poetry.lock +15 -1
- pyproject.toml +1 -0
poetry.lock
CHANGED
|
@@ -1992,6 +1992,20 @@ files = [
|
|
| 1992 |
[package.dependencies]
|
| 1993 |
six = ">=1.5"
|
| 1994 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1995 |
[[package]]
|
| 1996 |
name = "pytz"
|
| 1997 |
version = "2024.1"
|
|
@@ -3275,4 +3289,4 @@ multidict = ">=4.0"
|
|
| 3275 |
[metadata]
|
| 3276 |
lock-version = "2.0"
|
| 3277 |
python-versions = "3.11.9"
|
| 3278 |
-
content-hash = "
|
|
|
|
| 1992 |
[package.dependencies]
|
| 1993 |
six = ">=1.5"
|
| 1994 |
|
| 1995 |
+
[[package]]
|
| 1996 |
+
name = "python-dotenv"
|
| 1997 |
+
version = "1.0.1"
|
| 1998 |
+
description = "Read key-value pairs from a .env file and set them as environment variables"
|
| 1999 |
+
optional = false
|
| 2000 |
+
python-versions = ">=3.8"
|
| 2001 |
+
files = [
|
| 2002 |
+
{file = "python-dotenv-1.0.1.tar.gz", hash = "sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca"},
|
| 2003 |
+
{file = "python_dotenv-1.0.1-py3-none-any.whl", hash = "sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a"},
|
| 2004 |
+
]
|
| 2005 |
+
|
| 2006 |
+
[package.extras]
|
| 2007 |
+
cli = ["click (>=5.0)"]
|
| 2008 |
+
|
| 2009 |
[[package]]
|
| 2010 |
name = "pytz"
|
| 2011 |
version = "2024.1"
|
|
|
|
| 3289 |
[metadata]
|
| 3290 |
lock-version = "2.0"
|
| 3291 |
python-versions = "3.11.9"
|
| 3292 |
+
content-hash = "0aca95a6edfe963beb682c23848c771b1ae55cdb1f66c1ede8bae39dba00f34d"
|
pyproject.toml
CHANGED
|
@@ -16,6 +16,7 @@ langchain-core = "^0.2.18"
|
|
| 16 |
sentence-transformers = "^3.0.1"
|
| 17 |
langchain = "^0.2.7"
|
| 18 |
faiss-cpu = "^1.8.0.post1"
|
|
|
|
| 19 |
|
| 20 |
|
| 21 |
[build-system]
|
|
|
|
| 16 |
sentence-transformers = "^3.0.1"
|
| 17 |
langchain = "^0.2.7"
|
| 18 |
faiss-cpu = "^1.8.0.post1"
|
| 19 |
+
python-dotenv = "^1.0.1"
|
| 20 |
|
| 21 |
|
| 22 |
[build-system]
|