Geominds / app.py
boadisamson's picture
updated requirements.txt file
c379e3b
raw
history blame
352 Bytes
from fastapi import FastAPI
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="microsoft/phi-4", trust_remote_code=True)
app = FastAPI()
@app.get('/')
def home():
return {"hello": "Geominds"}
@app.get('/ask')
def ask(prompt: str):
result = pipe(prompt)
return result[0]