blwowski commited on
Commit
5bcbe2a
·
verified ·
1 Parent(s): 03bc642

fixing bug missing :

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
20
 
21
 
22
  @tool
23
- def send_email(to_person:str, from_person:str, message:str) -> str
24
  """ A tool that takes an email address (str) from the to person and sends a message (str) to the from_person"""
25
  email_str = f"Sending the message {message} from {to_person} to {from_person}"
26
  return email_str
 
20
 
21
 
22
  @tool
23
+ def send_email(to_person:str, from_person:str, message:str) -> str:
24
  """ A tool that takes an email address (str) from the to person and sends a message (str) to the from_person"""
25
  email_str = f"Sending the message {message} from {to_person} to {from_person}"
26
  return email_str