Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
MohamedSaeed-dev
/
textLLM
like
0
Sleeping
App
Files
Files
Community
52d4b48
textLLM
/
app.py
MohamedSaeed-dev
Upload 3 files
52d4b48
verified
3 months ago
raw
Copy download link
history
blame
Safe
116 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}