| import sys, os | |
| sys.path.append(os.getcwd()) | |
| from utils import detect_tools_and_reasoning | |
| print(detect_tools_and_reasoning('Who is the president of France today?')) | |
| print(detect_tools_and_reasoning('Calculate 2+3*4 for me')) | |
| print(detect_tools_and_reasoning('Explain why the sky is blue')) | |