Commit
·
f30fc50
1
Parent(s):
2dfe607
Add __init__.py
Browse files- TextGen/__init__.py +5 -0
TextGen/__init__.py
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from fastapi import FastAPI
|
| 2 |
+
|
| 3 |
+
app = FastAPI(title="Deploying FastAPI Apps on Huggingface")
|
| 4 |
+
|
| 5 |
+
from TextGen import router
|