Spaces:
Sleeping
Sleeping
python 3.10
Browse files- pyproject.toml +9 -0
- requirements.txt +2 -1
- runtime.txt +1 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "knowledge-graph-app"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "知識圖譜應用"
|
| 5 |
+
requires-python = ">=3.10"
|
| 6 |
+
|
| 7 |
+
[build-system]
|
| 8 |
+
requires = ["setuptools>=42", "wheel"]
|
| 9 |
+
build-backend = "setuptools.build_meta"
|
requirements.txt
CHANGED
|
@@ -4,4 +4,5 @@ starlette>=0.40.0
|
|
| 4 |
python-multipart==0.0.9
|
| 5 |
pydantic==2.5.3
|
| 6 |
aiofiles==23.2.1 # 用於處理靜態檔案
|
| 7 |
-
openai>=1.0.0 # 添加 OpenAI
|
|
|
|
|
|
| 4 |
python-multipart==0.0.9
|
| 5 |
pydantic==2.5.3
|
| 6 |
aiofiles==23.2.1 # 用於處理靜態檔案
|
| 7 |
+
openai>=1.0.0 # 添加 OpenAI
|
| 8 |
+
# 需要 Python 3.10 或更高版本
|
runtime.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
python-3.10.0
|