test090309a commited on
Commit
bfe84f4
·
1 Parent(s): 19cb2ca

dateien erstellt

Browse files
Files changed (2) hide show
  1. app.py +8 -0
  2. requirements.txt +4 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ from fastapi import FastAPI
2
+
3
+ app = FastAPI()
4
+
5
+
6
+ @app.get("/")
7
+ def greet_json():
8
+ return {"Hello": "World!"}
requirements.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ fastapi
2
+ uvicorn[standard]
3
+ transformers
4
+ torch