Spaces:
Paused
Paused
File size: 418 Bytes
07572e7 5a3321a 891ff78 07572e7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from fastapi import FastAPI
from transformers import pipeline
app = FastAPI()
#pipe = pipeline("text2text-generation", model="google/flan-t5-small")
pipe = pipeline("text-generation", model="MaziyarPanahi/Mistral-7B-Instruct-v0.3-GGUF")
@app.get("/")
def home():
return {"Hello World!"}
@app.get("/generate")
def generate(prompt:str):
output = pipe(prompt)
return {"output":output[0]['generated_text']} |