Ask-The-Right-Question / pyproject.toml
huang_de_jun
feat: initial MVP of Ask The Right Question app
3b6c6f8
Raw
History Blame
426 Bytes
[project]
name = "ask-the-right-question"
version = "0.1.0"
description = "AI-powered Q&A assistant that helps you ask insightful questions during talks and presentations"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"anthropic>=0.75.0",
"gradio>=5.50.0",
"openai>=2.8.1",
"python-dotenv>=1.2.1",
"tavily-python>=0.7.13",
]
[project.scripts]
ask-the-right-question = "app:demo.launch"