Final_Assignment_Agent / basic_agent_test.py
SrcLurker's picture
use qwen3-32B
6a0f0db
raw
history blame
287 Bytes
#!/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.")
LOG.warning(f"{answer=}")