momenaca commited on
Commit
124e36b
·
1 Parent(s): 1ac0e91

fix dependencies issue

Browse files
Files changed (3) hide show
  1. poetry.lock +29 -1
  2. pyproject.toml +2 -0
  3. requirements.txt +6 -0
poetry.lock CHANGED
@@ -1695,6 +1695,20 @@ pydantic = [
1695
  ]
1696
  requests = ">=2,<3"
1697
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1698
  [[package]]
1699
  name = "loadenv"
1700
  version = "0.1.1"
@@ -2873,6 +2887,20 @@ files = [
2873
  [package.dependencies]
2874
  six = ">=1.5"
2875
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2876
  [[package]]
2877
  name = "python-multipart"
2878
  version = "0.0.9"
@@ -4607,4 +4635,4 @@ multidict = ">=4.0"
4607
  [metadata]
4608
  lock-version = "2.0"
4609
  python-versions = "^3.10"
4610
- content-hash = "9001a13925c8710cb8f3754c173ffae77fac8e5d59f79b826a3e85918d577cc8"
 
1695
  ]
1696
  requests = ">=2,<3"
1697
 
1698
+ [[package]]
1699
+ name = "load-dotenv"
1700
+ version = "0.1.0"
1701
+ description = "Automatically and implicitly load environment variables from .env file"
1702
+ optional = false
1703
+ python-versions = "*"
1704
+ files = [
1705
+ {file = "load-dotenv-0.1.0.tar.gz", hash = "sha256:bbe5f40072d4a61eadca66de6c222df5a2d935d6d41b703be1ff75396f635145"},
1706
+ {file = "load_dotenv-0.1.0-py3-none-any.whl", hash = "sha256:614803f720153fb8a5f97124a72aaa3930a67aa5547cbe8603d01ea7f9ac1adf"},
1707
+ ]
1708
+
1709
+ [package.dependencies]
1710
+ python-dotenv = "*"
1711
+
1712
  [[package]]
1713
  name = "loadenv"
1714
  version = "0.1.1"
 
2887
  [package.dependencies]
2888
  six = ">=1.5"
2889
 
2890
+ [[package]]
2891
+ name = "python-dotenv"
2892
+ version = "1.0.1"
2893
+ description = "Read key-value pairs from a .env file and set them as environment variables"
2894
+ optional = false
2895
+ python-versions = ">=3.8"
2896
+ files = [
2897
+ {file = "python-dotenv-1.0.1.tar.gz", hash = "sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca"},
2898
+ {file = "python_dotenv-1.0.1-py3-none-any.whl", hash = "sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a"},
2899
+ ]
2900
+
2901
+ [package.extras]
2902
+ cli = ["click (>=5.0)"]
2903
+
2904
  [[package]]
2905
  name = "python-multipart"
2906
  version = "0.0.9"
 
4635
  [metadata]
4636
  lock-version = "2.0"
4637
  python-versions = "^3.10"
4638
+ content-hash = "cf967160125618430d23e65107d1aba2ae8cb0004e1e2edfb3fb65fdea087d4a"
pyproject.toml CHANGED
@@ -20,6 +20,8 @@ langchain-community = "^0.2.5"
20
  transformers = "4.39.0"
21
  azure-search-documents = "^11.4.0"
22
  azure-identity = "^1.17.1"
 
 
23
 
24
 
25
  [build-system]
 
20
  transformers = "4.39.0"
21
  azure-search-documents = "^11.4.0"
22
  azure-identity = "^1.17.1"
23
+ load-dotenv = "^0.1.0"
24
+ python-dotenv = "^1.0.1"
25
 
26
 
27
  [build-system]
requirements.txt CHANGED
@@ -824,6 +824,9 @@ langchain==0.2.12 ; python_version >= "3.10" and python_version < "4.0" \
824
  langsmith==0.1.98 ; python_version >= "3.10" and python_version < "4.0" \
825
  --hash=sha256:e07678219a0502e8f26d35294e72127a39d25e32fafd091af5a7bb661e9a6bd1 \
826
  --hash=sha256:f79e8a128652bbcee4606d10acb6236973b5cd7dde76e3741186d3b97b5698e9
 
 
 
827
  loadenv==0.1.1 ; python_version >= "3.10" and python_version < "4.0" \
828
  --hash=sha256:8dde4a80cf733323880c118659685d822f9d1311fa15b3d7e1e2aa28223aba29 \
829
  --hash=sha256:e06a1d86ea1ad89a96aeb470d27de8d569a980ad7c6fd0dd0ee416cc11919853
@@ -1458,6 +1461,9 @@ pyparsing==3.1.2 ; python_version >= "3.10" and python_version < "4.0" \
1458
  python-dateutil==2.9.0.post0 ; python_version >= "3.10" and python_version < "4.0" \
1459
  --hash=sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3 \
1460
  --hash=sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427
 
 
 
1461
  python-multipart==0.0.9 ; python_version >= "3.10" and python_version < "4.0" \
1462
  --hash=sha256:03f54688c663f1b7977105f021043b0793151e4cb1c1a9d4a11fc13d622c4026 \
1463
  --hash=sha256:97ca7b8ea7b05f977dc3849c3ba99d51689822fab725c3703af7c866a0c2b215
 
824
  langsmith==0.1.98 ; python_version >= "3.10" and python_version < "4.0" \
825
  --hash=sha256:e07678219a0502e8f26d35294e72127a39d25e32fafd091af5a7bb661e9a6bd1 \
826
  --hash=sha256:f79e8a128652bbcee4606d10acb6236973b5cd7dde76e3741186d3b97b5698e9
827
+ load-dotenv==0.1.0 ; python_version >= "3.10" and python_version < "4.0" \
828
+ --hash=sha256:614803f720153fb8a5f97124a72aaa3930a67aa5547cbe8603d01ea7f9ac1adf \
829
+ --hash=sha256:bbe5f40072d4a61eadca66de6c222df5a2d935d6d41b703be1ff75396f635145
830
  loadenv==0.1.1 ; python_version >= "3.10" and python_version < "4.0" \
831
  --hash=sha256:8dde4a80cf733323880c118659685d822f9d1311fa15b3d7e1e2aa28223aba29 \
832
  --hash=sha256:e06a1d86ea1ad89a96aeb470d27de8d569a980ad7c6fd0dd0ee416cc11919853
 
1461
  python-dateutil==2.9.0.post0 ; python_version >= "3.10" and python_version < "4.0" \
1462
  --hash=sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3 \
1463
  --hash=sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427
1464
+ python-dotenv==1.0.1 ; python_version >= "3.10" and python_version < "4.0" \
1465
+ --hash=sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca \
1466
+ --hash=sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a
1467
  python-multipart==0.0.9 ; python_version >= "3.10" and python_version < "4.0" \
1468
  --hash=sha256:03f54688c663f1b7977105f021043b0793151e4cb1c1a9d4a11fc13d622c4026 \
1469
  --hash=sha256:97ca7b8ea7b05f977dc3849c3ba99d51689822fab725c3703af7c866a0c2b215