Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Kaballas
/
Anythinhllm
like
0
Running
App
Files
Files
Community
67c1523
Anythinhllm
/
app.py
Kaballas
Add AnythingLLM Docker configuration
489497e
2 months ago
raw
Copy download link
history
blame
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}