Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
LeoYML
/
FoamAgent
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
FoamAgent
/
app.py
LeoYML
v1
0e5bb97
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
226 Bytes
from
fastapi
import
FastAPI
import
os
app = FastAPI()
@app.get(
"/"
)
async
def
root
():
return
{
"status"
:
"ok"
,
"service"
:
"Foam-Agent"
,
"transport"
: os.environ.get(
"MCP_TRANSPORT"
,
"stdio"
),
}