anpigon commited on
Commit
d9cfb0f
1 Parent(s): a0d0682

chore: Update pyproject.toml to add openpyxl dependency

Browse files
evaluation_data/qa.xlsx ADDED
Binary file (31.3 kB). View file
 
make_qa_for_evaluation.ipynb CHANGED
@@ -2049,10 +2049,12 @@
2049
  },
2050
  {
2051
  "cell_type": "code",
2052
- "execution_count": null,
2053
  "metadata": {},
2054
  "outputs": [],
2055
- "source": []
 
 
2056
  }
2057
  ],
2058
  "metadata": {
 
2049
  },
2050
  {
2051
  "cell_type": "code",
2052
+ "execution_count": 4,
2053
  "metadata": {},
2054
  "outputs": [],
2055
+ "source": [
2056
+ "qa_df.to_excel(\"evaluation_data/qa.xlsx\", index=False)"
2057
+ ]
2058
  }
2059
  ],
2060
  "metadata": {
poetry.lock CHANGED
@@ -1409,6 +1409,17 @@ files = [
1409
  dnspython = ">=2.0.0"
1410
  idna = ">=2.0.0"
1411
 
 
 
 
 
 
 
 
 
 
 
 
1412
  [[package]]
1413
  name = "evaluate"
1414
  version = "0.4.2"
@@ -4787,6 +4798,20 @@ typing-extensions = ">=4.7,<5"
4787
  [package.extras]
4788
  datalib = ["numpy (>=1)", "pandas (>=1.2.3)", "pandas-stubs (>=1.1.0.11)"]
4789
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4790
  [[package]]
4791
  name = "opentelemetry-api"
4792
  version = "1.25.0"
@@ -8458,4 +8483,4 @@ test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools",
8458
  [metadata]
8459
  lock-version = "2.0"
8460
  python-versions = "^3.11"
8461
- content-hash = "4ef943133a2ca0bb72cd1c6d47c8d441c6c1bf01724ed271ead260f0b0d482b4"
 
1409
  dnspython = ">=2.0.0"
1410
  idna = ">=2.0.0"
1411
 
1412
+ [[package]]
1413
+ name = "et-xmlfile"
1414
+ version = "1.1.0"
1415
+ description = "An implementation of lxml.xmlfile for the standard library"
1416
+ optional = false
1417
+ python-versions = ">=3.6"
1418
+ files = [
1419
+ {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"},
1420
+ {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"},
1421
+ ]
1422
+
1423
  [[package]]
1424
  name = "evaluate"
1425
  version = "0.4.2"
 
4798
  [package.extras]
4799
  datalib = ["numpy (>=1)", "pandas (>=1.2.3)", "pandas-stubs (>=1.1.0.11)"]
4800
 
4801
+ [[package]]
4802
+ name = "openpyxl"
4803
+ version = "3.1.5"
4804
+ description = "A Python library to read/write Excel 2010 xlsx/xlsm files"
4805
+ optional = false
4806
+ python-versions = ">=3.8"
4807
+ files = [
4808
+ {file = "openpyxl-3.1.5-py2.py3-none-any.whl", hash = "sha256:5282c12b107bffeef825f4617dc029afaf41d0ea60823bbb665ef3079dc79de2"},
4809
+ {file = "openpyxl-3.1.5.tar.gz", hash = "sha256:cf0e3cf56142039133628b5acffe8ef0c12bc902d2aadd3e0fe5878dc08d1050"},
4810
+ ]
4811
+
4812
+ [package.dependencies]
4813
+ et-xmlfile = "*"
4814
+
4815
  [[package]]
4816
  name = "opentelemetry-api"
4817
  version = "1.25.0"
 
8483
  [metadata]
8484
  lock-version = "2.0"
8485
  python-versions = "^3.11"
8486
+ content-hash = "3eaed40b47dd1dff0e007022a304c9865270c9ed59b9c7c7e5f9e973b80b3c13"
pyproject.toml CHANGED
@@ -33,6 +33,7 @@ gradio = "^4.37.2"
33
  ragas = "^0.1.10"
34
  autorag = "^0.2.9"
35
  llama-index-llms-upstage = "^0.1.4"
 
36
 
37
 
38
  [tool.poetry.group.dev.dependencies]
 
33
  ragas = "^0.1.10"
34
  autorag = "^0.2.9"
35
  llama-index-llms-upstage = "^0.1.4"
36
+ openpyxl = "^3.1.5"
37
 
38
 
39
  [tool.poetry.group.dev.dependencies]