visproj commited on
Commit
cb6a5cb
·
verified ·
1 Parent(s): 84ba017

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -24,6 +24,10 @@ def get_rxcui(drug_name: str) -> str:
24
  @tool
25
  def check_drug_interaction(drug_1: str, drug_2: str) -> str:
26
  """Checks for potential interactions between two medications using the NLM Interaction API."""
 
 
 
 
27
  rxcui_1 = get_rxcui(drug_1)
28
  rxcui_2 = get_rxcui(drug_2)
29
 
 
24
  @tool
25
  def check_drug_interaction(drug_1: str, drug_2: str) -> str:
26
  """Checks for potential interactions between two medications using the NLM Interaction API."""
27
+ Args:
28
+ drug_1: The name of the first drug.
29
+ drug_2: The name of the second drug.
30
+
31
  rxcui_1 = get_rxcui(drug_1)
32
  rxcui_2 = get_rxcui(drug_2)
33