import json, subprocess, random
from typing importAnydefadd_number(a: float | str, b: float | str) -> float:
returnfloat(a) + float(b)
defmultiply_number(a: float | str, b: float | str) -> float:
returnfloat(a) * float(b)
defsubstract_number(a: float | str, b: float | str) -> float:
returnfloat(a) - float(b)
defwrite_a_story() -> str:
return random.choice([
"A long time ago in a galaxy far far away... ",
"There were 2 friends who loved sloths and code... ",
"The world was ending because every sloth evolved to have superhuman intelligence... ",
"Unbeknownst to one friend, the other accidentally coded a program to evolve sloths... ",
])
defterminal(command: str) -> str:
if"rm "in command or"sudo "in command or"dd "in command or"chmod "in command:
msg = "Cannot execute 'rm, sudo, dd, chmod' commands since they are dangerous "print(msg); return msg
print(f"Executing terminal command `{command}` ")
try:
returnstr(subprocess.run(command, capture_output = True, text = True, shell = True, check = True).stdout)
except subprocess.CalledProcessError as e:
returnf"Command failed: {e.stderr} "defpython(code: str) -> str:
data = {}
exec(code, data)
del data["__builtins__"]
returnstr(data)
MAP_FN = {
"add_number": add_number,
"multiply_number": multiply_number,
"substract_number": substract_number,
"write_a_story": write_a_story,
"terminal": terminal,
"python": python,
}
To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
Functional
Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes.The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.