Kimmy7/chat_over_docs
0
1[tool.poetry]2name = "chat-over-docs"3version = "0.1.0"4description = "This is a app that allows you to ask questions about your document"5authors = ["KimaniKibuthu <32309808+KimaniKibuthu@users.noreply.github.com>"]6license = "Apache-2.0 license"7readme = "README.md"8 9[tool.poetry.dependencies]10python = "^3.11"11langchain = "^0.1.12"12langchain-community = "^0.0.28"13chromadb = "^0.4.24"14jupyter = "^1.0.0"15ipykernel = "^6.29.3"16asyncio = "^3.4.3"17nest-asyncio = "^1.6.0"18langchain-nomic = "^0.0.2"19gpt4all = "^2.2.1.post1"20langchain-experimental = "^0.0.54"21langserve = {extras = ["all"], version = "^0.0.51"}22pydantic = "1.10.13"23streamlit = "^1.32.1"24pre-commit = "^3.6.2"25huggingface-hub = "^0.21.4"26 27 28[build-system]29requires = ["poetry-core"]30build-backend = "poetry.core.masonry.api"31 