Update app.py
Browse files
app.py
CHANGED
|
@@ -4,6 +4,7 @@ from urllib.request import urlopen
|
|
| 4 |
import json
|
| 5 |
import time
|
| 6 |
from load_llms import model_choices, llm_intro, load_model
|
|
|
|
| 7 |
|
| 8 |
|
| 9 |
# Construct chatbot
|
|
@@ -38,8 +39,14 @@ with gr.Blocks(
|
|
| 38 |
# Link the dropdown with the textbox to update the description based on the selected model
|
| 39 |
model_dropdown.change(fn=llm_intro, inputs=model_dropdown, outputs=explanation)
|
| 40 |
|
| 41 |
-
gr.
|
| 42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
with gr.Column(scale=4, elem_id='col'):
|
| 44 |
chatbot = gr.Chatbot(label="Chatroom", value=[(None, "How may I help you today?")], elem_id="chatbot")
|
| 45 |
|
|
|
|
| 4 |
import json
|
| 5 |
import time
|
| 6 |
from load_llms import model_choices, llm_intro, load_model
|
| 7 |
+
from utils import show_image
|
| 8 |
|
| 9 |
|
| 10 |
# Construct chatbot
|
|
|
|
| 39 |
# Link the dropdown with the textbox to update the description based on the selected model
|
| 40 |
model_dropdown.change(fn=llm_intro, inputs=model_dropdown, outputs=explanation)
|
| 41 |
|
| 42 |
+
gr.Interface(show_image,
|
| 43 |
+
inputs=gr.Image(interactive=False,
|
| 44 |
+
value="https://huggingface.co/spaces/yxmauw/chatbot/blob/main/space_hardware.png",
|
| 45 |
+
type="filepath",
|
| 46 |
+
image_mode="RGBA"),
|
| 47 |
+
outputs=[gr.Image()]
|
| 48 |
+
)
|
| 49 |
+
|
| 50 |
with gr.Column(scale=4, elem_id='col'):
|
| 51 |
chatbot = gr.Chatbot(label="Chatroom", value=[(None, "How may I help you today?")], elem_id="chatbot")
|
| 52 |
|