CoolFace
Apppublic

Gonalb/multi_agentic_sql_generator

sourceHugging Faceupdated 2y agoView on Hugging Face
1likes
pyproject.toml41 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=42", "wheel"]3build-backend = "setuptools.build_meta"4 5[project]6name = "multi-agentic-sql-generator"7version = "0.1.0"8description = "Multi-Agent SQL Generator using LangGraph and OpenAI"9readme = "README.md"10requires-python = ">=3.13"11license = {text = "MIT"}12authors = [13    {name = "Your Name", email = "your.email@example.com"}14]15 16dependencies = [17    "openai",18    "qdrant-client",19    "chainlit==2.4.1",20    "pandas",21    "matplotlib",22    "huggingface_hub",23    "google-cloud-bigquery",24    "langchain-community==0.3.14",25    "langchain-huggingface==0.1.2",26    "langchain-openai==0.2.14",27    "langchain-qdrant==0.2.0",28    "langgraph==0.2.61",29    "python-dotenv>=1.0.1",30    "websockets>=15.0",31]32 33[project.optional-dependencies]34dev = [35    "jupyter",36    "ipykernel",37]38 39[tool.setuptools]40packages = []41