Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -69,11 +69,44 @@ Need Emergency Department performance data for March 2024:
|
|
69 |
- Transfer rates to other departments
|
70 |
Purpose: Monthly performance review and staff allocation planning.
|
71 |
"""
|
72 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
def process_request(name, employee_id, email, department, other_dept, request_details, frequency, urgency):
|
74 |
"""Process the data request and return both user and technical responses"""
|
75 |
print("=== Debug: Received Inputs ===")
|
76 |
-
print("\nProcessing new request:")
|
77 |
print(f"Name: {name}")
|
78 |
print(f"Employee ID: {employee_id}")
|
79 |
print(f"Email: {email}")
|
@@ -87,158 +120,112 @@ def process_request(name, employee_id, email, department, other_dept, request_de
|
|
87 |
if not all([name, employee_id, email, request_details, department, frequency, urgency]):
|
88 |
print("Validation failed - missing required fields")
|
89 |
return "Please fill in all required fields.", None
|
90 |
-
|
|
|
|
|
|
|
|
|
91 |
try:
|
92 |
-
#
|
93 |
print("Calling GPT service...")
|
94 |
result = service.assess_request(request_details)
|
95 |
-
print(f"GPT
|
96 |
|
97 |
-
if "error" in result:
|
98 |
-
return f"Error analyzing request: {result['error']}", None
|
99 |
-
|
100 |
# Create user-friendly summary
|
101 |
-
user_summary =
|
102 |
-
### Data Request Summary
|
103 |
-
**From:** {name} ({department})
|
104 |
-
**Request Type:** {frequency} | Urgency: {urgency}
|
105 |
|
106 |
-
|
107 |
-
{result.get('request_analysis', {}).get('interpretation', 'No interpretation available')}
|
108 |
-
|
109 |
-
**Data Availability:**
|
110 |
-
"""
|
111 |
-
|
112 |
-
# Add available reports
|
113 |
-
available = result.get('data_availability', {}).get('available_reports', [])
|
114 |
-
if available:
|
115 |
-
user_summary += "\n✅ **Available in Web Data:**\n"
|
116 |
-
for report in available:
|
117 |
-
user_summary += f"- {report['name']}\n"
|
118 |
-
user_summary += "\nEstimated processing time: 3 working days\n"
|
119 |
-
|
120 |
-
# Add data lake requirements
|
121 |
-
data_lake = result.get('data_lake_requirements', {}).get('reports_needed', [])
|
122 |
-
if data_lake:
|
123 |
-
user_summary += "\n🔄 **Requires Additional Database Query:**\n"
|
124 |
-
for report in data_lake:
|
125 |
-
user_summary += f"- {report['report_type']}\n"
|
126 |
-
user_summary += "\nEstimated processing time: 2 weeks\n"
|
127 |
-
|
128 |
-
# Add unavailable data
|
129 |
-
unavailable = result.get('unavailable_data', [])
|
130 |
-
if unavailable:
|
131 |
-
user_summary += "\n❌ **Data Not Currently Available:**\n"
|
132 |
-
for item in unavailable:
|
133 |
-
user_summary += f"- {item['report_type']}\n"
|
134 |
-
user_summary += "\nRecommendation: Schedule a meeting to discuss alternatives\n"
|
135 |
-
|
136 |
-
# Log to sheets
|
137 |
-
print("Logging to Google Sheets...")
|
138 |
sheet_data = {
|
|
|
139 |
"name": name,
|
140 |
"employee_id": employee_id,
|
141 |
"email": email,
|
142 |
-
"department":
|
143 |
"request_details": request_details,
|
144 |
"frequency": frequency,
|
145 |
"urgency": urgency,
|
146 |
"user_summary": user_summary,
|
147 |
"system_analysis": json.dumps(result, ensure_ascii=False)
|
148 |
}
|
149 |
-
|
150 |
sheets_logger.log_request(sheet_data)
|
151 |
-
|
152 |
-
|
153 |
return user_summary, result
|
154 |
-
|
155 |
except Exception as e:
|
156 |
error_msg = f"Error processing request: {str(e)}"
|
157 |
print(error_msg)
|
158 |
-
print(traceback.format_exc())
|
159 |
return error_msg, None
|
160 |
|
161 |
# Create Gradio interface
|
162 |
with gr.Blocks() as demo:
|
163 |
gr.Markdown("# Hospital Data Request System")
|
164 |
gr.Markdown("Please fill in the following information to request data access.")
|
165 |
-
|
166 |
with gr.Row():
|
167 |
with gr.Column():
|
168 |
name = gr.Textbox(
|
169 |
label="Full Name*",
|
170 |
-
placeholder="Enter your full name"
|
171 |
-
value=""
|
172 |
)
|
173 |
employee_id = gr.Textbox(
|
174 |
label="Employee ID*",
|
175 |
-
placeholder="Enter your employee ID"
|
176 |
-
value=""
|
177 |
)
|
178 |
email = gr.Textbox(
|
179 |
label="Email*",
|
180 |
-
placeholder="Enter your email for contact"
|
181 |
-
value=""
|
182 |
)
|
183 |
-
|
184 |
with gr.Row():
|
185 |
with gr.Column():
|
186 |
department = gr.Dropdown(
|
187 |
choices=list(DEPARTMENTS.keys()),
|
188 |
label="Department*",
|
189 |
info="Select your department",
|
190 |
-
value=list(DEPARTMENTS.keys())[0]
|
191 |
)
|
192 |
other_dept = gr.Textbox(
|
193 |
label="Other Department",
|
194 |
placeholder="Specify your department if not in the list",
|
195 |
-
visible=False
|
196 |
-
value=""
|
197 |
)
|
198 |
-
|
199 |
-
|
|
|
|
|
200 |
department.change(
|
201 |
-
fn=
|
202 |
inputs=department,
|
203 |
outputs=other_dept
|
204 |
-
)
|
205 |
|
206 |
# Example requests section
|
207 |
with gr.Accordion("📝 Click here to see example requests", open=False):
|
208 |
gr.Markdown(EXAMPLE_REQUESTS)
|
209 |
-
|
|
|
210 |
with gr.Row():
|
211 |
request_details = gr.Textbox(
|
212 |
label="Request Details*",
|
213 |
placeholder="Please describe in detail what data you need, including time period, specific parameters, etc.",
|
214 |
-
lines=5
|
215 |
-
value=""
|
216 |
)
|
217 |
-
|
218 |
with gr.Row():
|
219 |
with gr.Column():
|
220 |
frequency = gr.Dropdown(
|
221 |
choices=FREQUENCIES,
|
222 |
-
label="Request Frequency*"
|
223 |
-
value=FREQUENCIES[0]
|
224 |
)
|
225 |
urgency = gr.Dropdown(
|
226 |
choices=URGENCY,
|
227 |
-
label="Urgency Level*"
|
228 |
-
value=URGENCY[0]
|
229 |
)
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
user_output = gr.Markdown(label="Request Summary")
|
237 |
-
|
238 |
-
with gr.Accordion("Technical Analysis (For Data Team)", open=False):
|
239 |
-
tech_output = gr.JSON()
|
240 |
-
|
241 |
-
# Connect the submit button to the process function
|
242 |
submit_btn.click(
|
243 |
fn=process_request,
|
244 |
inputs=[
|
@@ -247,15 +234,18 @@ with gr.Blocks() as demo:
|
|
247 |
],
|
248 |
outputs=[user_output, tech_output]
|
249 |
)
|
250 |
-
|
251 |
-
gr.Markdown(
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
|
|
|
|
259 |
|
260 |
if __name__ == "__main__":
|
261 |
-
demo.launch()
|
|
|
|
69 |
- Transfer rates to other departments
|
70 |
Purpose: Monthly performance review and staff allocation planning.
|
71 |
"""
|
72 |
+
# Function to format user-friendly summaries
|
73 |
+
def format_user_summary(analysis_result):
|
74 |
+
"""Format analysis result into user-friendly summary"""
|
75 |
+
available = analysis_result.get("data_availability", {}).get("available_reports", [])
|
76 |
+
data_lake = analysis_result.get("data_lake_requirements", {}).get("reports_needed", [])
|
77 |
+
unavailable = analysis_result.get("unavailable_data", [])
|
78 |
+
|
79 |
+
interpretation = analysis_result.get("request_analysis", {}).get("interpretation", "")
|
80 |
+
|
81 |
+
summary = [
|
82 |
+
"### Data Request Summary",
|
83 |
+
f"**Request Analysis**: \n{interpretation}\n",
|
84 |
+
"\n**Data Availability**:\n"
|
85 |
+
]
|
86 |
+
|
87 |
+
if available:
|
88 |
+
summary.append("✅ **Available in Web Data System**: ")
|
89 |
+
for report in available:
|
90 |
+
summary.append(f"- {report['name']}")
|
91 |
+
summary.append(f"\nEstimated processing time: **3 working days**\n")
|
92 |
+
|
93 |
+
if data_lake:
|
94 |
+
summary.append("🔄 **Requires Additional Database Query**: ")
|
95 |
+
for report in data_lake:
|
96 |
+
summary.append(f"- {report['report_type']}")
|
97 |
+
summary.append(f"\nEstimated processing time: **2–4 weeks**\n")
|
98 |
+
|
99 |
+
if unavailable:
|
100 |
+
summary.append("❌ **Not Currently Available**: ")
|
101 |
+
for item in unavailable:
|
102 |
+
summary.append(f"- {item['report_type']}")
|
103 |
+
summary.append("\nAction required: Schedule a meeting to discuss alternative data sources or solutions. We will follow up via email.\n")
|
104 |
+
|
105 |
+
return "\n".join(summary)
|
106 |
+
|
107 |
def process_request(name, employee_id, email, department, other_dept, request_details, frequency, urgency):
|
108 |
"""Process the data request and return both user and technical responses"""
|
109 |
print("=== Debug: Received Inputs ===")
|
|
|
110 |
print(f"Name: {name}")
|
111 |
print(f"Employee ID: {employee_id}")
|
112 |
print(f"Email: {email}")
|
|
|
120 |
if not all([name, employee_id, email, request_details, department, frequency, urgency]):
|
121 |
print("Validation failed - missing required fields")
|
122 |
return "Please fill in all required fields.", None
|
123 |
+
|
124 |
+
# Combine department info
|
125 |
+
final_department = other_dept if department == "Other" else department
|
126 |
+
print(f"Final department: {final_department}")
|
127 |
+
|
128 |
try:
|
129 |
+
# Analyze request
|
130 |
print("Calling GPT service...")
|
131 |
result = service.assess_request(request_details)
|
132 |
+
print(f"GPT response received: {result}")
|
133 |
|
|
|
|
|
|
|
134 |
# Create user-friendly summary
|
135 |
+
user_summary = format_user_summary(result)
|
|
|
|
|
|
|
136 |
|
137 |
+
# Prepare data for Google Sheets logging
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
sheet_data = {
|
139 |
+
"timestamp": datetime.now().strftime("%Y-%m-%d %H:%M:%S"),
|
140 |
"name": name,
|
141 |
"employee_id": employee_id,
|
142 |
"email": email,
|
143 |
+
"department": final_department,
|
144 |
"request_details": request_details,
|
145 |
"frequency": frequency,
|
146 |
"urgency": urgency,
|
147 |
"user_summary": user_summary,
|
148 |
"system_analysis": json.dumps(result, ensure_ascii=False)
|
149 |
}
|
|
|
150 |
sheets_logger.log_request(sheet_data)
|
151 |
+
|
|
|
152 |
return user_summary, result
|
|
|
153 |
except Exception as e:
|
154 |
error_msg = f"Error processing request: {str(e)}"
|
155 |
print(error_msg)
|
|
|
156 |
return error_msg, None
|
157 |
|
158 |
# Create Gradio interface
|
159 |
with gr.Blocks() as demo:
|
160 |
gr.Markdown("# Hospital Data Request System")
|
161 |
gr.Markdown("Please fill in the following information to request data access.")
|
162 |
+
|
163 |
with gr.Row():
|
164 |
with gr.Column():
|
165 |
name = gr.Textbox(
|
166 |
label="Full Name*",
|
167 |
+
placeholder="Enter your full name"
|
|
|
168 |
)
|
169 |
employee_id = gr.Textbox(
|
170 |
label="Employee ID*",
|
171 |
+
placeholder="Enter your employee ID"
|
|
|
172 |
)
|
173 |
email = gr.Textbox(
|
174 |
label="Email*",
|
175 |
+
placeholder="Enter your email for contact"
|
|
|
176 |
)
|
177 |
+
|
178 |
with gr.Row():
|
179 |
with gr.Column():
|
180 |
department = gr.Dropdown(
|
181 |
choices=list(DEPARTMENTS.keys()),
|
182 |
label="Department*",
|
183 |
info="Select your department",
|
184 |
+
value=list(DEPARTMENTS.keys())[0] # Set default value
|
185 |
)
|
186 |
other_dept = gr.Textbox(
|
187 |
label="Other Department",
|
188 |
placeholder="Specify your department if not in the list",
|
189 |
+
visible=False
|
|
|
190 |
)
|
191 |
+
|
192 |
+
def update_other_dept_visibility(dept):
|
193 |
+
return gr.update(visible=(dept == "Other"))
|
194 |
+
|
195 |
department.change(
|
196 |
+
fn=update_other_dept_visibility,
|
197 |
inputs=department,
|
198 |
outputs=other_dept
|
199 |
+
)
|
200 |
|
201 |
# Example requests section
|
202 |
with gr.Accordion("📝 Click here to see example requests", open=False):
|
203 |
gr.Markdown(EXAMPLE_REQUESTS)
|
204 |
+
|
205 |
+
|
206 |
with gr.Row():
|
207 |
request_details = gr.Textbox(
|
208 |
label="Request Details*",
|
209 |
placeholder="Please describe in detail what data you need, including time period, specific parameters, etc.",
|
210 |
+
lines=5
|
|
|
211 |
)
|
212 |
+
|
213 |
with gr.Row():
|
214 |
with gr.Column():
|
215 |
frequency = gr.Dropdown(
|
216 |
choices=FREQUENCIES,
|
217 |
+
label="Request Frequency*"
|
|
|
218 |
)
|
219 |
urgency = gr.Dropdown(
|
220 |
choices=URGENCY,
|
221 |
+
label="Urgency Level*"
|
|
|
222 |
)
|
223 |
+
|
224 |
+
submit_btn = gr.Button("Submit Request", variant="primary")
|
225 |
+
|
226 |
+
user_output = gr.Markdown("", label="Request Summary")
|
227 |
+
tech_output = gr.JSON(label="Technical Analysis (For Data Team)")
|
228 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
submit_btn.click(
|
230 |
fn=process_request,
|
231 |
inputs=[
|
|
|
234 |
],
|
235 |
outputs=[user_output, tech_output]
|
236 |
)
|
237 |
+
|
238 |
+
gr.Markdown(
|
239 |
+
"""
|
240 |
+
### Notes:
|
241 |
+
- Fields marked with * are required
|
242 |
+
- Provide detailed information about the data you need
|
243 |
+
- Include specific time periods and parameters
|
244 |
+
- Clearly state the purpose of your request
|
245 |
+
- All communications will be sent to the provided email
|
246 |
+
"""
|
247 |
+
)
|
248 |
|
249 |
if __name__ == "__main__":
|
250 |
+
demo.launch()
|
251 |
+
|