File size: 543 Bytes
c379e3b
 
c63ab86
 
c379e3b
c63ab86
 
 
 
c379e3b
c63ab86
 
c379e3b
c63ab86
 
c379e3b
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from fastapi import FastAPI
from transformers import pipeline
import os
from huggingface_hub import login

# Load the Hugging Face token from environment variables
hf_token = os.getenv("HF_TOKEN")
if hf_token:
    login(token=hf_token)

# Initialize the Hugging Face pipeline
pipe = pipeline("text-generation", model="microsoft/phi-4", trust_remote_code=True)

# FastAPI app setup
app = FastAPI()

@app.get('/')
def home():
    return {"hello": "Geominds"}

@app.get('/ask')
def ask(prompt: str):
    result = pipe(prompt)
    return result[0]