SkyNetWalker commited on
Commit
50119d1
·
verified ·
1 Parent(s): 0f5768c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -61,7 +61,7 @@ def respond(
61
 
62
  print("Completed response generation.")
63
 
64
- chatbot = gr.Chatbot(height=200)
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 (HF API)") # 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:")
 
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:")