Spaces:
Runtime error
Runtime error
Update pyproject.toml
Browse files- pyproject.toml +7 -3
pyproject.toml
CHANGED
|
@@ -10,11 +10,15 @@ authors = [
|
|
| 10 |
{name = "Tensor Tacos"}
|
| 11 |
]
|
| 12 |
readme = "Readme.md"
|
| 13 |
-
requires-python = ">=3.
|
| 14 |
dependencies = [
|
| 15 |
"fastapi",
|
| 16 |
"uvicorn",
|
| 17 |
"pydantic",
|
| 18 |
"requests",
|
| 19 |
-
"openai"
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
{name = "Tensor Tacos"}
|
| 11 |
]
|
| 12 |
readme = "Readme.md"
|
| 13 |
+
requires-python = ">=3.10"
|
| 14 |
dependencies = [
|
| 15 |
"fastapi",
|
| 16 |
"uvicorn",
|
| 17 |
"pydantic",
|
| 18 |
"requests",
|
| 19 |
+
"openai",
|
| 20 |
+
"openenv-core>=0.2.0"
|
| 21 |
+
]
|
| 22 |
+
|
| 23 |
+
[project.scripts]
|
| 24 |
+
server = "server.app:main"
|