Spaces:
Sleeping
Sleeping
Yaser77 commited on
Commit ·
a7740a6
1
Parent(s): 79cd595
final submission ready
Browse files- pyproject.toml +11 -0
- server/app.py +7 -0
- uv.lock +0 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "ambiguity-resolution-openenv"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "OpenEnv Ambiguity Resolution Environment"
|
| 5 |
+
authors = [
|
| 6 |
+
{ name="T Mohamed Yaser", email="1ammar.yaser@gmail.com" }
|
| 7 |
+
]
|
| 8 |
+
dependencies = ["openenv-core>=0.2.0"]
|
| 9 |
+
|
| 10 |
+
[project.scripts]
|
| 11 |
+
server = "server.app:main"
|
server/app.py
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from server import app as fastapi_app
|
| 2 |
+
|
| 3 |
+
def main():
|
| 4 |
+
return fastapi_app
|
| 5 |
+
|
| 6 |
+
if __name__ == "__main__":
|
| 7 |
+
main()
|
uv.lock
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|