AbenzaFran commited on
Commit
987a418
·
verified ·
1 Parent(s): fd2e134

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +32 -14
app.py CHANGED
@@ -47,20 +47,38 @@ def predict(message, history, selected_agent):
47
 
48
  # Define the Gradio interface using Blocks for layout
49
  def app_interface():
50
- with gr.Blocks() as demo:
51
- dropdown = gr.Dropdown(
52
- choices=list(extractor_agents.keys()),
53
- value="Solution Specifier A",
54
- label="Choose Extractor Agent",
55
- interactive=True,
56
- )
57
-
58
- chat = gr.ChatInterface(
59
- fn=predict,
60
- additional_inputs=[dropdown],
61
- title="Solution Specifier Chat",
62
- description="Test with different solution specifiers"
63
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  return demo
65
 
66
  # Launch the app
 
47
 
48
  # Define the Gradio interface using Blocks for layout
49
  def app_interface():
50
+ with gr.Blocks(
51
+ css="""
52
+ .container {
53
+ max-width: 100% !important;
54
+ padding: 0 !important;
55
+ }
56
+ .main-div {
57
+ height: 100vh;
58
+ display: flex;
59
+ flex-direction: column;
60
+ }
61
+ .chat-div {
62
+ flex-grow: 1;
63
+ min-height: 0;
64
+ }
65
+ """
66
+ ) as demo:
67
+ with gr.Column(elem_classes="main-div"):
68
+ dropdown = gr.Dropdown(
69
+ choices=list(extractor_agents.keys()),
70
+ value="Solution Specifier A",
71
+ label="Choose Extractor Agent",
72
+ interactive=True,
73
+ container=True
74
+ )
75
+ chat = gr.ChatInterface(
76
+ fn=predict,
77
+ additional_inputs=[dropdown],
78
+ title="Solution Specifier Chat",
79
+ description="Test with different solution specifiers",
80
+ elem_classes="chat-div"
81
+ )
82
  return demo
83
 
84
  # Launch the app