mojtabaa4 commited on
Commit
4c6b197
β€’
1 Parent(s): fa350e7

add application files

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -53,8 +53,8 @@ with gr.Blocks(css=custom_css) as interface:
53
 
54
  # Use Row to align input and button horizontally
55
  with gr.Row():
56
- user_input = gr.Textbox(show_label=False, placeholder="Enter your law question here... βš–οΈ", rounded=True, container=True)
57
- send_button = gr.Button("πŸ“€ Send", full_width=False, rounded=True)
58
 
59
  # Chat update function to append new messages to the chatbot
60
  def chat_update(user_message, history):
@@ -68,4 +68,3 @@ with gr.Blocks(css=custom_css) as interface:
68
 
69
  # Launch the Gradio interface with a public shareable link
70
  interface.launch()
71
-
 
53
 
54
  # Use Row to align input and button horizontally
55
  with gr.Row():
56
+ user_input = gr.Textbox(show_label=False, placeholder="Enter your law question here... βš–οΈ", container=True)
57
+ send_button = gr.Button("πŸ“€ Send", full_width=False)
58
 
59
  # Chat update function to append new messages to the chatbot
60
  def chat_update(user_message, history):
 
68
 
69
  # Launch the Gradio interface with a public shareable link
70
  interface.launch()