|
import gradio as gr |
|
from huggingface_hub import login, logout, whoami |
|
|
|
|
|
custom_css = """ |
|
body, .gradio-container { |
|
background: linear-gradient(135deg, #1e3c72, #2a5298); |
|
color: white; |
|
} |
|
.sidebar { |
|
background: rgba(255, 255, 255, 0.1) !important; |
|
border-radius: 10px; |
|
padding: 20px; |
|
margin: 10px; |
|
} |
|
.sidebar .markdown { |
|
color: white !important; |
|
} |
|
""" |
|
|
|
|
|
def handle_login(token): |
|
try: |
|
|
|
login(token=token, add_to_git_credential=False) |
|
user_info = whoami() |
|
return f"Logged in as: {user_info['name']}" |
|
except Exception as e: |
|
|
|
logout() |
|
return f"Login failed: {str(e)}" |
|
|
|
|
|
def is_logged_in(): |
|
try: |
|
|
|
whoami() |
|
return True |
|
except: |
|
return False |
|
|
|
|
|
def restricted_functionality(prompt): |
|
if not is_logged_in(): |
|
return "Please log in to use this feature." |
|
|
|
return f"Model response to: {prompt}" |
|
|
|
|
|
with gr.Blocks(css=custom_css) as demo: |
|
with gr.Sidebar(): |
|
gr.Markdown("# Inference Provider") |
|
gr.Markdown("This Space showcases the deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct model, served by the nebius API. Sign in with your Hugging Face account to use this API.") |
|
token_input = gr.Textbox(label="Hugging Face Token", type="password") |
|
login_button = gr.Button("Sign in") |
|
login_status = gr.Markdown("") |
|
|
|
|
|
with gr.Column(visible=False) as main_interface: |
|
prompt = gr.Textbox(label="Your Prompt") |
|
output = gr.Textbox(label="Model Response") |
|
generate_button = gr.Button("Generate") |
|
|
|
|
|
model_interface = gr.load("models/deepseek-ai/DeepSeek-Coder-V2-Lite-Instruct", provider="nebius") |
|
|
|
|
|
def update_interface(token): |
|
login_result = handle_login(token) |
|
if "Logged in as:" in login_result: |
|
return {main_interface: gr.update(visible=True), login_status: login_result} |
|
else: |
|
return {main_interface: gr.update(visible=False), login_status: login_result} |
|
|
|
login_button.click(update_interface, inputs=token_input, outputs=[main_interface, login_status]) |
|
|
|
|
|
generate_button.click(restricted_functionality, inputs=prompt, outputs=output) |
|
|
|
|
|
demo.launch() |