File size: 479 Bytes
9d098dd 7376a97 cc9ee3d 7376a97 9d098dd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#!/usr/bin/env python3
import logging
import basic_agent
LOG = logging.getLogger(__name__)
ba = basic_agent.BasicAgent()
"""
answer = ba(
"Who is the 47th president of the united states? If necessary, use a web search to get the most up to date information."
)
"""
answer = ba("What is the first name of the only Malko Competition recipient from the 20th Century (after 1977) whose nationality on record is a country that no longer exists?"
)
LOG.warning(f"{answer=}")
|