Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
GlobalBusinessAdvisors
/
eco-property-retrofit
like
0
Sleeping
App
Files
Files
Community
main
eco-property-retrofit
/
app
/
main.py
GlobalBusinessAdvisors
Update app/main.py
4d46bae
verified
5 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
141 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"message"
:
"EcoPropertyRetrofitGPT API is running"
}