添加基础项目文件包括.gitignore、.python-version和pyproject.toml 删除无用的测试文件和旧README内容 添加主程序入口main.py
11 lines
196 B
TOML
11 lines
196 B
TOML
[project]
|
|
name = "test"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"openai>=2.2.0",
|
|
"streamlit>=1.40.1",
|
|
]
|