CoolFace
Apppublic

NandyG/QA_Generator

sourceHugging Facemitupdated 2y agoView on Hugging Face
0likes
pyproject.toml23 linesDownload Raw Back to root
1[tool.poetry]2name = "qa-generator"3version = "0.0.1"4description = "This is a Streamlit application that generates questions and answers from an uploaded PDF document. It is useful for teachers, professors, or event organizers who need to prepare exam questions or quick tests."5authors = ["NanthagopalEswaran <nanthagopaleswaran@gmail.com>"]6license = "MIT"7readme = "README.md"8 9[tool.poetry.dependencies]10python = ">=3.10,<3.12"11streamlit = "^1.30.0"12langchain = "^0.1.4"13langchain-openai = "^0.0.5"14llama-index = "^0.9.39"15pypdf = "^4.0.1"16unstructured = {extras = ["eml", "html", "pdf"], version = "^0.12.3"}17docx2txt = "^0.8"18 19 20[build-system]21requires = ["poetry-core"]22build-backend = "poetry.core.masonry.api"23