from fastapi import FastAPI from transformers import pipeline app = FastAPI() @app.get("/api/") def index(): return {"output": "Hello world!"}