Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
danghungithp
/
my_ollama_huggingface_space_app
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
de85ce8
my_ollama_huggingface_space_app
/
app.py
danghungithp
Create app.py
9095514
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}