File size: 297 Bytes
aed88a2 | 1 2 3 4 5 6 7 8 | 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'))
|