LangChain_PDF / pyproject.toml
yucelgumus61's picture
Fix Gradio TypeError: Add pydantic==2.10.6 to resolve 'bool not iterable' error
18afbc9
Raw
History Blame Contribute Delete
461 Bytes
[project]
name = "langchain-pdf"
version = "0.1.0"
description = "PDF Question-Answer application with LangChain and Gemini AI"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"gradio==4.26.0",
"PyPDF2==3.0.1",
"langchain==0.2.16",
"langchain-google-genai==1.0.6",
"google-generativeai==0.5.4",
"python-dotenv==1.0.0",
"pydantic==2.10.6"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"