from fastapi import FastAPI | |
from transformers import pipeline | |
app = FastAPI() | |
pipe = pipeline("text2text-generation", model="nvidia/Nemotron-Research-Reasoning-Qwen-1.5B") | |
def home(): | |
return {"message": "Welcome to the text generation API!"} | |
def generate_text(text: str): | |
output=pipe(text) | |
return {"output": output[0]['generated_text']} |