Update app.py
Browse files
app.py
CHANGED
@@ -36,7 +36,9 @@ def process_image_and_display_payload(image):
|
|
36 |
|
37 |
return status_message, payload, user, user_pass, GROQ_API_KEY, HF_TOKEN, OPENAI_API_KEY, OPENROUTER_API_KEY
|
38 |
|
39 |
-
|
|
|
|
|
40 |
gr.Markdown("# Gradio KeyLock Component Demo")
|
41 |
gr.Markdown(
|
42 |
"**Instructions:**\n"
|
|
|
36 |
|
37 |
return status_message, payload, user, user_pass, GROQ_API_KEY, HF_TOKEN, OPENAI_API_KEY, OPENROUTER_API_KEY
|
38 |
|
39 |
+
gr_head = "<style>" + KeylockDecoderComponent.CSS +"</style>"
|
40 |
+
|
41 |
+
with gr.Blocks(theme=gr.themes.Soft(), head = gr_head) as demo:
|
42 |
gr.Markdown("# Gradio KeyLock Component Demo")
|
43 |
gr.Markdown(
|
44 |
"**Instructions:**\n"
|