Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -50,7 +50,7 @@ FREQUENCIES = ["One-time request", "Weekly", "Monthly"]
|
|
50 |
# Urgency options
|
51 |
URGENCY = ["Within a week", "Within a month", "Within a year"]
|
52 |
|
53 |
-
# Example requests
|
54 |
EXAMPLE_REQUESTS = """
|
55 |
### Example 1: Clinical Data Request
|
56 |
I need OPD patient statistics for the Cardiology department from January to June 2024, including daily patient volume, types of cardiac conditions (ICD-10 codes), average waiting times, and number of follow-up vs. new cases. This data will be used for department capacity planning and resource allocation.
|
@@ -109,7 +109,6 @@ def format_user_summary(analysis_result):
|
|
109 |
return "\n".join(summary)
|
110 |
|
111 |
def process_request(name, employee_id, email, department, other_dept, request_details, frequency, urgency):
|
112 |
-
"""Process the data request and return both user and technical responses"""
|
113 |
# Validate inputs
|
114 |
if not all([name, employee_id, email, request_details]):
|
115 |
return "Please fill in all required fields.", None
|
@@ -155,81 +154,65 @@ with gr.Blocks() as demo:
|
|
155 |
with gr.Row():
|
156 |
with gr.Column():
|
157 |
name = gr.Textbox(
|
158 |
-
label="Full Name",
|
159 |
-
placeholder="Enter your full name"
|
160 |
-
required=True
|
161 |
)
|
162 |
employee_id = gr.Textbox(
|
163 |
-
label="Employee ID",
|
164 |
-
placeholder="Enter your employee ID"
|
165 |
-
required=True
|
166 |
)
|
167 |
email = gr.Textbox(
|
168 |
-
label="Email",
|
169 |
-
placeholder="Enter your email for contact"
|
170 |
-
required=True
|
171 |
)
|
172 |
|
173 |
with gr.Row():
|
174 |
with gr.Column():
|
175 |
department = gr.Dropdown(
|
176 |
choices=list(DEPARTMENTS.keys()),
|
177 |
-
label="Department",
|
178 |
-
info="Select your department"
|
179 |
-
required=True
|
180 |
)
|
181 |
other_dept = gr.Textbox(
|
182 |
label="Other Department",
|
183 |
placeholder="Specify your department if not in the list",
|
184 |
visible=False
|
185 |
)
|
186 |
-
|
187 |
-
department.change(
|
188 |
-
fn=lambda x: gr.update(visible=x=="Other"),
|
189 |
-
inputs=[department],
|
190 |
-
outputs=[other_dept]
|
191 |
-
)
|
192 |
|
193 |
-
|
|
|
|
|
|
|
|
|
|
|
194 |
with gr.Accordion("π Click here to see example requests", open=False):
|
195 |
gr.Markdown(EXAMPLE_REQUESTS)
|
196 |
|
197 |
with gr.Row():
|
198 |
request_details = gr.Textbox(
|
199 |
-
label="Request Details",
|
200 |
placeholder="Please describe in detail what data you need, including time period, specific parameters, etc.",
|
201 |
-
lines=5
|
202 |
-
required=True
|
203 |
)
|
204 |
|
205 |
with gr.Row():
|
206 |
with gr.Column():
|
207 |
frequency = gr.Dropdown(
|
208 |
choices=FREQUENCIES,
|
209 |
-
label="Request Frequency"
|
210 |
-
info="How often do you need this data?",
|
211 |
-
required=True
|
212 |
)
|
213 |
urgency = gr.Dropdown(
|
214 |
choices=URGENCY,
|
215 |
-
label="Urgency Level"
|
216 |
-
info="How urgent is your request?",
|
217 |
-
required=True
|
218 |
)
|
219 |
|
220 |
submit_btn = gr.Button("Submit Request")
|
221 |
|
222 |
-
# Add user-friendly summary output
|
223 |
with gr.Row():
|
224 |
-
user_output = gr.Markdown(
|
225 |
-
label="Request Summary",
|
226 |
-
value="Your request summary will appear here...",
|
227 |
-
show_label=True
|
228 |
-
)
|
229 |
|
230 |
-
# Technical analysis output (for data team)
|
231 |
with gr.Accordion("Technical Analysis (For Data Team)", open=False):
|
232 |
-
tech_output = gr.JSON(
|
233 |
|
234 |
submit_btn.click(
|
235 |
fn=process_request,
|
@@ -240,6 +223,7 @@ with gr.Blocks() as demo:
|
|
240 |
|
241 |
gr.Markdown("""
|
242 |
### Notes:
|
|
|
243 |
- Please provide detailed information about the data you need
|
244 |
- Include specific time periods and parameters
|
245 |
- Clearly state the purpose of your request
|
|
|
50 |
# Urgency options
|
51 |
URGENCY = ["Within a week", "Within a month", "Within a year"]
|
52 |
|
53 |
+
# Example requests
|
54 |
EXAMPLE_REQUESTS = """
|
55 |
### Example 1: Clinical Data Request
|
56 |
I need OPD patient statistics for the Cardiology department from January to June 2024, including daily patient volume, types of cardiac conditions (ICD-10 codes), average waiting times, and number of follow-up vs. new cases. This data will be used for department capacity planning and resource allocation.
|
|
|
109 |
return "\n".join(summary)
|
110 |
|
111 |
def process_request(name, employee_id, email, department, other_dept, request_details, frequency, urgency):
|
|
|
112 |
# Validate inputs
|
113 |
if not all([name, employee_id, email, request_details]):
|
114 |
return "Please fill in all required fields.", None
|
|
|
154 |
with gr.Row():
|
155 |
with gr.Column():
|
156 |
name = gr.Textbox(
|
157 |
+
label="Full Name*",
|
158 |
+
placeholder="Enter your full name"
|
|
|
159 |
)
|
160 |
employee_id = gr.Textbox(
|
161 |
+
label="Employee ID*",
|
162 |
+
placeholder="Enter your employee ID"
|
|
|
163 |
)
|
164 |
email = gr.Textbox(
|
165 |
+
label="Email*",
|
166 |
+
placeholder="Enter your email for contact"
|
|
|
167 |
)
|
168 |
|
169 |
with gr.Row():
|
170 |
with gr.Column():
|
171 |
department = gr.Dropdown(
|
172 |
choices=list(DEPARTMENTS.keys()),
|
173 |
+
label="Department*",
|
174 |
+
info="Select your department"
|
|
|
175 |
)
|
176 |
other_dept = gr.Textbox(
|
177 |
label="Other Department",
|
178 |
placeholder="Specify your department if not in the list",
|
179 |
visible=False
|
180 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
|
182 |
+
department.change(
|
183 |
+
fn=lambda x: gr.update(visible=x=="Other"),
|
184 |
+
inputs=[department],
|
185 |
+
outputs=[other_dept]
|
186 |
+
)
|
187 |
+
|
188 |
with gr.Accordion("π Click here to see example requests", open=False):
|
189 |
gr.Markdown(EXAMPLE_REQUESTS)
|
190 |
|
191 |
with gr.Row():
|
192 |
request_details = gr.Textbox(
|
193 |
+
label="Request Details*",
|
194 |
placeholder="Please describe in detail what data you need, including time period, specific parameters, etc.",
|
195 |
+
lines=5
|
|
|
196 |
)
|
197 |
|
198 |
with gr.Row():
|
199 |
with gr.Column():
|
200 |
frequency = gr.Dropdown(
|
201 |
choices=FREQUENCIES,
|
202 |
+
label="Request Frequency*"
|
|
|
|
|
203 |
)
|
204 |
urgency = gr.Dropdown(
|
205 |
choices=URGENCY,
|
206 |
+
label="Urgency Level*"
|
|
|
|
|
207 |
)
|
208 |
|
209 |
submit_btn = gr.Button("Submit Request")
|
210 |
|
|
|
211 |
with gr.Row():
|
212 |
+
user_output = gr.Markdown(label="Request Summary")
|
|
|
|
|
|
|
|
|
213 |
|
|
|
214 |
with gr.Accordion("Technical Analysis (For Data Team)", open=False):
|
215 |
+
tech_output = gr.JSON()
|
216 |
|
217 |
submit_btn.click(
|
218 |
fn=process_request,
|
|
|
223 |
|
224 |
gr.Markdown("""
|
225 |
### Notes:
|
226 |
+
- Fields marked with * are required
|
227 |
- Please provide detailed information about the data you need
|
228 |
- Include specific time periods and parameters
|
229 |
- Clearly state the purpose of your request
|