Donghak1's picture
Update app.py
ad6c64f verified
raw
history blame contribute delete
449 Bytes
import gradio as gr
with gr.Blocks(fill_height=True) as demo:
with gr.Blocks():
gr.Markdown("# Inference Provider")
gr.Markdown("This Space showcases the aaditya/Llama3-OpenBioLLM-70B model, served by the nebius API. Sign in with your Hugging Face account to use this API.")
button = gr.LoginButton("Sign in")
gr.load("models/aaditya/Llama3-OpenBioLLM-70B", accept_token=button, provider="nebius")
demo.launch()