Update app.py
Browse files
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(
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
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
|