File size: 383 Bytes
41ca8e9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | [project]
name = "smart-rooting-chatbot"
version = "0.1.0"
description = "AI Chatbot with Smart Routing & RAG"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"gradio==5.42.0",
"requests>=2.31.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.uv]
dev-dependencies = []
|