Spaces:
Sleeping
Sleeping
| [build-system] | |
| requires = ["setuptools>=61.0"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "taskflow-ai-agent" | |
| version = "0.1.0" | |
| description = "AI agent for product Q&A using MCP server and Gradio" | |
| readme = "README.md" | |
| authors = [{ name = "Дима", email = "dima@example.com" }] | |
| license = { text = "MIT" } | |
| classifiers = [ | |
| "Development Status :: 4 - Beta", | |
| "Intended Audience :: Developers", | |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", | |
| "License :: OSI Approved :: MIT License", | |
| "Programming Language :: Python :: 3" | |
| ] | |
| keywords = ["gradio", "mcp", "ai-agent", "retrieval", "technical-documentation"] | |
| dependencies = [ | |
| "gradio>=4.0", | |
| "fastapi>=0.110", | |
| "uvicorn>=0.27" | |
| ] | |
| requires-python = ">=3.8" | |
| [project.scripts] | |
| start-agent = "app:main" | |
| start-server = "mcp_server.main:main" |