Rathapoom commited on
Commit
74b786b
·
verified ·
1 Parent(s): a0a57c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +60 -23
app.py CHANGED
@@ -1,36 +1,73 @@
 
1
  import gradio as gr
2
  import os
3
- from openai import OpenAI
 
4
 
5
- # Initialize OpenAI client
6
- client = OpenAI(
7
- api_key=os.environ.get("OPENAI_API_KEY"),
8
- )
9
 
10
- def generate_response(prompt):
 
11
  try:
12
- response = client.chat.completions.create(
13
- model="gpt-4o-mini", # Note: "gpt-4o-mini" is not a valid model name
14
- messages=[
15
- {
16
- "role": "user",
17
- "content": prompt, # Use the actual prompt instead of hardcoded text
18
- }
19
- ]
20
- )
21
- # The correct way to access the response content
22
- return response.choices[0].message.content
23
  except Exception as e:
24
- return f"Error: {str(e)}"
 
 
 
 
 
 
 
 
 
25
 
26
  # Create Gradio interface
27
  with gr.Blocks() as demo:
28
- gr.Markdown("## Test OpenAI GPT API")
29
- user_input = gr.Textbox(label="Enter your prompt")
30
- output = gr.Textbox(label="GPT Response")
31
- submit = gr.Button("Generate Response")
 
 
 
 
 
 
 
 
 
32
 
33
- submit.click(generate_response, inputs=user_input, outputs=output)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
 
35
  if __name__ == "__main__":
36
  demo.launch()
 
1
+ # app.py
2
  import gradio as gr
3
  import os
4
+ from data_service import DataAssessmentService
5
+ import json
6
 
7
+ # Initialize service
8
+ service = DataAssessmentService(api_key=os.environ.get("OPENAI_API_KEY"))
 
 
9
 
10
+ def process_request(request_text: str) -> str:
11
+ """Process the data request and return formatted results"""
12
  try:
13
+ result = service.assess_request(request_text)
14
+ return json.dumps(result, indent=2)
 
 
 
 
 
 
 
 
 
15
  except Exception as e:
16
+ return json.dumps({
17
+ "status": "error",
18
+ "message": str(e)
19
+ }, indent=2)
20
+
21
+ demo_text = """Example requests:
22
+ 1. "Show me OPD patients from January 2024, including their diagnoses and waiting times"
23
+ 2. "Get all emergency surgeries from last month with their durations and costs"
24
+ 3. "List top 100 diagnoses from pediatric clinic in 2023"
25
+ """
26
 
27
  # Create Gradio interface
28
  with gr.Blocks() as demo:
29
+ gr.Markdown("# Hospital Data Assessment Service")
30
+ gr.Markdown("Enter your data request in English to find available reports and data sources.")
31
+
32
+ with gr.Row():
33
+ request_input = gr.Textbox(
34
+ label="Data Request",
35
+ placeholder="Example: I need information about OPD patients who visited in January 2024, including their diagnoses and treating doctors",
36
+ lines=3
37
+ )
38
+
39
+ with gr.Row():
40
+ submit_btn = gr.Button("Analyze Request")
41
+ clear_btn = gr.Button("Clear")
42
 
43
+ with gr.Row():
44
+ output = gr.Textbox(
45
+ label="Analysis Result",
46
+ lines=10,
47
+ show_copy_button=True
48
+ )
49
+
50
+ with gr.Accordion("Example Requests", open=False):
51
+ gr.Markdown(demo_text)
52
+
53
+ submit_btn.click(
54
+ fn=process_request,
55
+ inputs=[request_input],
56
+ outputs=[output]
57
+ )
58
+
59
+ clear_btn.click(
60
+ fn=lambda: (None, None),
61
+ inputs=[],
62
+ outputs=[request_input, output]
63
+ )
64
+
65
+ gr.Markdown("""
66
+ ### Notes:
67
+ - Please provide specific date ranges when requesting data
68
+ - The system will check availability across OPD, IPD, OR, and other hospital systems
69
+ - Results will show which reports are immediately available and which need additional processing
70
+ """)
71
 
72
  if __name__ == "__main__":
73
  demo.launch()