File size: 191 Bytes
9d098dd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/usr/bin/env python3
import logging
import basic_agent
LOG = logging.getLogger(__name__)
ba = basic_agent.BasicAgent()
answer = ba("What color is the sky?")
LOG.warning(f"{answer=}")
|