Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,6 +2,7 @@ import gradio as gr
|
|
2 |
from sentence_transformers import SentenceTransformer, util
|
3 |
import transformers
|
4 |
from transformers import pipeline
|
|
|
5 |
import openai
|
6 |
import os
|
7 |
|
@@ -126,14 +127,21 @@ topics = """
|
|
126 |
- Sustainability
|
127 |
"""
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
# Setup the Gradio Blocks interface with custom layout components
|
130 |
with gr.Blocks(theme='gradio/seafoam') as demo:
|
131 |
-
gr.Image(
|
132 |
-
show_label = False, show_share_button = False, show_download_button = False)
|
133 |
gr.Markdown(welcome_message) # Display the formatted welcome message
|
134 |
with gr.Row():
|
135 |
with gr.Column():
|
136 |
gr.Markdown(topics) # Show the topics on the left side
|
|
|
137 |
with gr.Row():
|
138 |
with gr.Column():
|
139 |
question = gr.Textbox(label="Your question", placeholder="What would you like to know?")
|
|
|
2 |
from sentence_transformers import SentenceTransformer, util
|
3 |
import transformers
|
4 |
from transformers import pipeline
|
5 |
+
import webbrowser
|
6 |
import openai
|
7 |
import os
|
8 |
|
|
|
127 |
- Sustainability
|
128 |
"""
|
129 |
|
130 |
+
def display_iframe():
|
131 |
+
return iframe
|
132 |
+
|
133 |
+
def display_image():
|
134 |
+
return "https://images.ctfassets.net/t5gtctpjc8ne/6voM4MnZ2sKOYMwF7pICmY/5b250c4e007b3a463c5ae387a171b5fb/hero-C_R-composting_garden_0093_IS.jpg"
|
135 |
+
|
136 |
+
|
137 |
# Setup the Gradio Blocks interface with custom layout components
|
138 |
with gr.Blocks(theme='gradio/seafoam') as demo:
|
139 |
+
gr.Image(display_image(), show_label = False, show_share_button = False, show_download_button = False)
|
|
|
140 |
gr.Markdown(welcome_message) # Display the formatted welcome message
|
141 |
with gr.Row():
|
142 |
with gr.Column():
|
143 |
gr.Markdown(topics) # Show the topics on the left side
|
144 |
+
gr.HTML(display_iframe()) # Embed the iframe on the left side
|
145 |
with gr.Row():
|
146 |
with gr.Column():
|
147 |
question = gr.Textbox(label="Your question", placeholder="What would you like to know?")
|