Spaces:
Runtime error
Runtime error
RufusRubin777
commited on
Commit
•
d7b2a5e
1
Parent(s):
eb0fa3b
Update app.py
Browse files
app.py
CHANGED
@@ -69,8 +69,17 @@ def app_search_keyword(extracted_text, keyword):
|
|
69 |
search_results_str = "<br>".join(search_results)
|
70 |
return search_results_str
|
71 |
|
|
|
|
|
|
|
|
|
|
|
72 |
# Gradio Interface
|
73 |
with gr.Blocks() as iface:
|
|
|
|
|
|
|
|
|
74 |
with gr.Row():
|
75 |
with gr.Column():
|
76 |
image_input = gr.Image(type="pil", label="Upload an Image")
|
|
|
69 |
search_results_str = "<br>".join(search_results)
|
70 |
return search_results_str
|
71 |
|
72 |
+
|
73 |
+
title_html = """
|
74 |
+
<h1><span class="gradient-text" id="text">IIT Roorkee (GOT ASSIGNMENT)</span></h1>
|
75 |
+
"""
|
76 |
+
|
77 |
# Gradio Interface
|
78 |
with gr.Blocks() as iface:
|
79 |
+
|
80 |
+
gr.HTML(title_html)
|
81 |
+
|
82 |
+
|
83 |
with gr.Row():
|
84 |
with gr.Column():
|
85 |
image_input = gr.Image(type="pil", label="Upload an Image")
|