Spaces:
Sleeping
Sleeping
File size: 331 Bytes
141a6d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from fastapi import FastAPI
from transformers import pipeline
app=FastAPI()
pipe=pipeline("translation", model="charanhu/text_to_sql_5")
@app.get("/")
def home():
return{"message":"Hello World"}
@app.get("/generate")
def generate(text:str):
output=pipe(text)
return{"output":output[0]['generated_text']} |