1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
[project]
name = "pdm-chatbot"
version = "0.0.0"
authors = [
{name = "Frost Ming", email = "me@frostming.com"},
]
dependencies = [
"setuptools>=68.2.2",
"openai>=0.28.1",
"streamlit>=1.28.1",
"llama-index-llms-azure-openai>=0.3.0",
"llama-index-core>=0.12.1",
"llama-index-embeddings-azure-openai>=0.3.0",
"llama-index-readers-file>=0.4.0",
]
requires-python = ">=3.10,<3.12"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = false
[tool.pdm.scripts]
start = "streamlit run app.py"
|