Chris McMaster commited on
Commit
d8264d4
Β·
1 Parent(s): cadb1aa

Add videos

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. app.py +22 -0
README.md CHANGED
@@ -19,7 +19,7 @@ sdk_version: 5.33.1
19
  ---
20
  # Pharmacist MCP Server
21
 
22
- A comprehensive Model Context Protocol (MCP) server providing pharmaceutical and clinical decision support tools for healthcare applications.
23
 
24
  ## πŸš€ Features
25
 
 
19
  ---
20
  # Pharmacist MCP Server
21
 
22
+ A comprehensive Model Context Protocol (MCP) server providing pharmaceutical and clinical decision support tools for healthcare applications. Two excample videos demonstrating usage can be found [here](https://youtu.be/Ku2EOHTnPYs) and [here](https://youtu.be/ufPnoJ6TZNI ).
23
 
24
  ## πŸš€ Features
25
 
app.py CHANGED
@@ -1014,5 +1014,27 @@ with gr.Blocks(
1014
  description="Analyze temporal patterns and time-to-onset of adverse events for a drug.",
1015
  )
1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1017
  if __name__ == "__main__":
1018
  demo.launch(mcp_server=True, show_error=True)
 
1014
  description="Analyze temporal patterns and time-to-onset of adverse events for a drug.",
1015
  )
1016
 
1017
+ # Video Resources Section
1018
+ with gr.Row():
1019
+ gr.HTML(
1020
+ """
1021
+ <div style="text-align: center; padding: 20px; margin-top: 30px; border-top: 1px solid #e0e0e0;">
1022
+ <h3 style="color: #0B579E; margin-bottom: 20px;">πŸ“Ή Example Usage</h3>
1023
+ <div style="display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;">
1024
+ <div style="flex: 1; min-width: 300px; max-width: 400px;">
1025
+ <iframe width="100%" height="225" src="https://www.youtube.com/embed/ufPnoJ6TZNI"
1026
+ frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
1027
+ allowfullscreen style="border-radius: 8px;"></iframe>
1028
+ </div>
1029
+ <div style="flex: 1; min-width: 300px; max-width: 400px;">
1030
+ <iframe width="100%" height="225" src="https://www.youtube.com/embed/Ku2EOHTnPYs"
1031
+ frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
1032
+ allowfullscreen style="border-radius: 8px;"></iframe>
1033
+ </div>
1034
+ </div>
1035
+ </div>
1036
+ """
1037
+ )
1038
+
1039
  if __name__ == "__main__":
1040
  demo.launch(mcp_server=True, show_error=True)