Spaces:
Sleeping
Sleeping
import gradio as gr | |
# def greet(name): | |
# return "Hello " + name + "!!" | |
# import requests | |
# API_URL = "https://api-inference.huggingface.co/models/AK-12/llama-2-medical-fine-tune" | |
# headers = {"Authorization": "Bearer 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"} | |
def query(payload): | |
response = requests.post("https://api-inference.huggingface.co/models/AK-12/llama-2-medical-fine-tune", headers={"Authorization": "Bearer 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"}, json=payload) | |
return response.json() | |
# output = query({ | |
# "inputs": "What is haller cells? ", | |
# }) | |
iface = gr.Interface(fn=query, inputs="text", outputs="text") | |
iface.launch() |