Spaces:
Running
on
Zero
Running
on
Zero
File size: 1,875 Bytes
dddb041 ab14713 06fd0d1 ab14713 059cfb9 fa52e75 059cfb9 fa52e75 059cfb9 06fd0d1 059cfb9 3b1abe2 059cfb9 3b1abe2 059cfb9 3b1abe2 059cfb9 3b1abe2 059cfb9 ab14713 9be53ec ab14713 059cfb9 ab14713 059cfb9 06fd0d1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
import gradio as gr
import requests
import io
from PIL import Image
import json
import os
# Load LoRAs from JSON
with open('loras.json', 'r') as f:
loras = json.load(f)
# API call function
def query(payload, api_url, token):
headers = {"Authorization": f"Bearer {token}"}
response = requests.post(api_url, headers=headers, json=payload)
return io.BytesIO(response.content)
# Define the function to run when the button is clicked
def run_lora(prompt, weight):
print("Inside run_lora")
selected_lora = loras[0] # You may need to adjust this index if you have multiple models
api_url = f"https://api-inference.huggingface.co/models/{selected_lora['repo']}"
trigger_word = selected_lora["trigger_word"]
token = os.getenv("API_TOKEN") # This will read the API token set in your managed environment
payload = {"inputs": f"{prompt} {trigger_word}"}
print("Calling query function...")
image_bytes = query(payload, api_url, token)
print("Query function executed successfully.")
return Image.open(image_bytes)
# Gradio UI
print("Before Gradio Interface")
title = gr.HTML("<h1>LoRA the Explorer</h1>")
gallery = gr.Gallery(
[(item["image"], item["title"]) for item in loras],
label="LoRA Gallery",
allow_preview=False,
columns=3,
)
prompt = gr.Textbox(label="Prompt", lines=1, max_lines=1, placeholder="Type a prompt after selecting a LoRA")
advanced_options = gr.Accordion("Advanced options", open=False)
weight = gr.Slider(0, 10, value=1, step=0.1, label="LoRA weight")
result = gr.Image(interactive=False, label="Generated Image")
gr.Interface(
fn=run_lora,
inputs=[title, gallery, prompt, {"Advanced Options": advanced_options}, weight],
outputs=[result],
css="custom.css" # Make sure your custom CSS file is in the same directory
).launch()
print("After Gradio Interface")
|