Rathapoom commited on
Commit
5925eac
·
verified ·
1 Parent(s): 4dff829

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +157 -0
app.py ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import os
3
+ import json
4
+ import pandas as pd
5
+ from data_service import DataAssessmentService
6
+ from datetime import datetime
7
+ import gspread
8
+ from oauth2client.service_account import ServiceAccountCredentials
9
+
10
+ # Initialize service
11
+ service = DataAssessmentService(api_key=os.environ.get("OPENAI_API_KEY"))
12
+
13
+ # Department mapping from abbreviations to full names
14
+ DEPARTMENTS = {
15
+ "Executive Management": "บริหาร ผอ รอง ผู้ช่วย",
16
+ "Education Support": "สนับสนุนการศึกษา",
17
+ "Medicine": "MED",
18
+ "Cardiology": "Cardio",
19
+ "Gastroenterology": "GI",
20
+ "Medical Oncology": "Onco MED",
21
+ "Hematology": "Hematology",
22
+ "Operating Room": "OR",
23
+ "Surgery": "Sx",
24
+ "Orthopedics": "Ortho",
25
+ "Obstetrics and Gynecology": "OBgyne",
26
+ "Ophthalmology": "Oph",
27
+ "Ear, Nose, and Throat": "ENT",
28
+ "Anesthesiology": "Anes",
29
+ "Emergency Medicine & EMS": "ER and EMS",
30
+ "Pediatrics": "PED",
31
+ "Family Medicine & Preventive Medicine": "GP Fammed preventive med",
32
+ "Psychiatry": "Psych",
33
+ "Physical Medicine & Rehabilitation": "PM&R Physiotherapy",
34
+ "Pathology": "Patho",
35
+ "Radiology": "Xray",
36
+ "Radiation Oncology": "Onco radiology",
37
+ "Cyclotron": "Cyclotron",
38
+ "Inpatient Department": "IPD",
39
+ "Outpatient Department": "OPD",
40
+ "Pharmacy": "Pharmacy",
41
+ "Dentistry": "dentistry",
42
+ "Nutrition": "Nutrition",
43
+ "Medical Records": "เวชระเบียน",
44
+ "Finance": "การเงิน",
45
+ "Other": "Other"
46
+ }
47
+
48
+ # Frequency options
49
+ FREQUENCIES = ["One-time request", "Weekly", "Monthly"]
50
+
51
+ # Urgency options
52
+ URGENCY = ["Within a week", "Within a month", "Within a year"]
53
+
54
+ def save_to_sheet(data):
55
+ """Save request data to Google Sheet"""
56
+ # TODO: Implement Google Sheets integration
57
+ pass
58
+
59
+ def process_request(name, employee_id, email, department, other_dept, request_details, frequency, urgency):
60
+ # Combine department info
61
+ final_department = other_dept if department == "Other" else department
62
+
63
+ # Current timestamp
64
+ timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
65
+
66
+ # Process the request through GPT
67
+ result = service.assess_request(request_details)
68
+
69
+ # Prepare data for Google Sheets
70
+ sheet_data = {
71
+ "Timestamp": timestamp,
72
+ "Name": name,
73
+ "Employee ID": employee_id,
74
+ "Email": email,
75
+ "Department": final_department,
76
+ "Request Details": request_details,
77
+ "Frequency": frequency,
78
+ "Urgency": urgency,
79
+ "System Response": json.dumps(result, ensure_ascii=False)
80
+ }
81
+
82
+ # Save to Google Sheets
83
+ save_to_sheet(sheet_data)
84
+
85
+ # Return formatted result
86
+ return result
87
+
88
+ # Create Gradio interface
89
+ with gr.Blocks() as demo:
90
+ gr.Markdown("# Hospital Data Request System")
91
+ gr.Markdown("Please fill in the following information to request data access.")
92
+
93
+ with gr.Row():
94
+ with gr.Column():
95
+ name = gr.Textbox(label="Full Name", placeholder="Enter your full name")
96
+ employee_id = gr.Textbox(label="Employee ID", placeholder="Enter your employee ID")
97
+ email = gr.Textbox(label="Email", placeholder="Enter your email for contact")
98
+
99
+ with gr.Row():
100
+ with gr.Column():
101
+ department = gr.Dropdown(
102
+ choices=list(DEPARTMENTS.keys()) + ["Other"],
103
+ label="Department",
104
+ info="Select your department"
105
+ )
106
+ other_dept = gr.Textbox(
107
+ label="Other Department",
108
+ placeholder="Specify your department if not in the list",
109
+ visible=False
110
+ )
111
+
112
+ # Show/hide other department textbox
113
+ department.change(
114
+ fn=lambda x: gr.update(visible=x=="Other"),
115
+ inputs=[department],
116
+ outputs=[other_dept]
117
+ )
118
+
119
+ with gr.Row():
120
+ request_details = gr.Textbox(
121
+ label="Request Details",
122
+ placeholder="Please describe in detail what data you need, including time period, specific parameters, etc.",
123
+ lines=5
124
+ )
125
+
126
+ with gr.Row():
127
+ with gr.Column():
128
+ frequency = gr.Dropdown(
129
+ choices=FREQUENCIES,
130
+ label="Request Frequency",
131
+ info="How often do you need this data?"
132
+ )
133
+ urgency = gr.Dropdown(
134
+ choices=URGENCY,
135
+ label="Urgency Level",
136
+ info="How urgent is your request?"
137
+ )
138
+
139
+ submit_btn = gr.Button("Submit Request")
140
+ output = gr.JSON(label="Analysis Result")
141
+
142
+ submit_btn.click(
143
+ fn=process_request,
144
+ inputs=[name, employee_id, email, department, other_dept,
145
+ request_details, frequency, urgency],
146
+ outputs=[output]
147
+ )
148
+
149
+ gr.Markdown("""
150
+ ### Notes:
151
+ - Please provide detailed information about the data you need
152
+ - All communications will be sent to the provided email
153
+ - For urgent requests, please select appropriate urgency level
154
+ """)
155
+
156
+ if __name__ == "__main__":
157
+ demo.launch()