15 lines
303 B
TOML
15 lines
303 B
TOML
|
|
[project]
|
||
|
|
name = "my-ai-app"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Add your description here"
|
||
|
|
readme = "README.md"
|
||
|
|
requires-python = ">=3.13"
|
||
|
|
dependencies = [
|
||
|
|
"openai>=2.14.0",
|
||
|
|
"python-dotenv>=1.2.1",
|
||
|
|
"streamlit>=1.30.0",
|
||
|
|
"chainlit>=0.1.160",
|
||
|
|
"fastapi>=0.128.0",
|
||
|
|
"uvicorn>=0.40.0",
|
||
|
|
]
|