haydenk commited on
Commit
8073098
·
verified ·
1 Parent(s): c55d092

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -8
app.py CHANGED
@@ -6,13 +6,6 @@ import gradio as gr
6
  from gradio_multimodalchatbot import MultimodalChatbot
7
  from gradio.data_classes import FileData
8
 
9
- css = """
10
- .container {
11
- max-height: 50px;
12
- }
13
- """
14
-
15
-
16
  # For better security practices, retrieve sensitive information like API keys from environment variables.
17
 
18
  # Fetch an environment variable.
@@ -94,7 +87,7 @@ with gr.Blocks() as demo:
94
  # Initialize the MultimodalChatbot component
95
  multi = MultimodalChatbot(value=[], height=300)
96
 
97
- with gr.Row(elem_classes=["container"]):
98
  # Textbox for user input with increased scale for better visibility
99
  tb = gr.Textbox(scale=5, placeholder='Message CortexChatV...')
100
 
 
6
  from gradio_multimodalchatbot import MultimodalChatbot
7
  from gradio.data_classes import FileData
8
 
 
 
 
 
 
 
 
9
  # For better security practices, retrieve sensitive information like API keys from environment variables.
10
 
11
  # Fetch an environment variable.
 
87
  # Initialize the MultimodalChatbot component
88
  multi = MultimodalChatbot(value=[], height=300)
89
 
90
+ with gr.Row():
91
  # Textbox for user input with increased scale for better visibility
92
  tb = gr.Textbox(scale=5, placeholder='Message CortexChatV...')
93