Spaces:
Running
Running
SkyNetWalker
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -61,7 +61,7 @@ def respond(
|
|
61 |
|
62 |
print("Completed response generation.")
|
63 |
|
64 |
-
chatbot = gr.Chatbot(height=
|
65 |
|
66 |
print("Chatbot interface created.")
|
67 |
|
@@ -80,7 +80,7 @@ models = [
|
|
80 |
|
81 |
# Add a title and move the model dropdown to the top
|
82 |
with gr.Blocks() as demo:
|
83 |
-
gr.Markdown("# LLM Test
|
84 |
|
85 |
# Add the model dropdown above the chatbot
|
86 |
model_dropdown = gr.Dropdown(choices=models, value=models[0], label="Select Model:")
|
|
|
61 |
|
62 |
print("Completed response generation.")
|
63 |
|
64 |
+
chatbot = gr.Chatbot(height=400)
|
65 |
|
66 |
print("Chatbot interface created.")
|
67 |
|
|
|
80 |
|
81 |
# Add a title and move the model dropdown to the top
|
82 |
with gr.Blocks() as demo:
|
83 |
+
gr.Markdown("# LLM Test") # Add a title to the top of the UI
|
84 |
|
85 |
# Add the model dropdown above the chatbot
|
86 |
model_dropdown = gr.Dropdown(choices=models, value=models[0], label="Select Model:")
|