mariajoanna15's picture
Update app.py
a96e8ad verified
raw
history blame contribute delete
391 Bytes
from fastapi import FastAPI
from transformers import pipeline
app = FastAPI()
pipe = pipeline("text2text-generation", model="nvidia/Nemotron-Research-Reasoning-Qwen-1.5B")
@app.get("/")
def home():
return {"message": "Welcome to the text generation API!"}
@app.get("/generate")
def generate_text(text: str):
output=pipe(text)
return {"output": output[0]['generated_text']}