Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kiranb99
/
LLM_Mimic
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
de908b0
LLM_Mimic
/
main.py
kiranb99
Create main.py
8da9e95
about 1 year ago
raw
Copy download link
history
blame
Safe
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}