Spaces:
Runtime error
Runtime error
from fastapi import FastAPI | |
app = FastAPI() | |
def read_root(): | |
return {"message": "Hello, Perplexica!"} | |
def test_api(): | |
return {"status": "success", "data": "This is a test API response"} |