#!/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=}") | |
#!/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=}") | |