Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
thecozietower
/
llm
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ca8bea5
llm
/
main.py
eienmojiki
Upload 7 files
ca8bea5
verified
3 months ago
raw
Copy download link
history
blame
Safe
166 Bytes
from
huggingface_hub
import
InferenceClient
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
async
def
root
():
return
{
"message"
:
"Hello World"
}