Weeks 1 through 3 kept the same base LLM. What two capabilities would make agents useful on the real internet, instead of just on the prompts you type in?
Live search — the agent reading the actual web — and the ability to call your own Python functions when it needs an exact answer?
Exactly the two upgrades this week. Day 24 swaps in a search-capable model and the agent starts returning current web answers. Day 25 combines that with result_type to extract structured facts. Days 26 and 27 introduce @agent.tool_plain — your Python function registered as a tool the agent can call. Day 28 is the capstone.
So by Friday I have an agent that searches the web, extracts structured data, and calls my own Python when it needs to compute — in one function?
That is the Day 28 capstone. Next — as a bridge to the explorers track — agents also start pulling data from external services on demand.
@agent.tool_plain — one Python tool the agent can callGoal: agents decide when to search and when to compute.
Create a free account to get started. Paid plans unlock all tracks.
Weeks 1 through 3 kept the same base LLM. What two capabilities would make agents useful on the real internet, instead of just on the prompts you type in?
Live search — the agent reading the actual web — and the ability to call your own Python functions when it needs an exact answer?
Exactly the two upgrades this week. Day 24 swaps in a search-capable model and the agent starts returning current web answers. Day 25 combines that with result_type to extract structured facts. Days 26 and 27 introduce @agent.tool_plain — your Python function registered as a tool the agent can call. Day 28 is the capstone.
So by Friday I have an agent that searches the web, extracts structured data, and calls my own Python when it needs to compute — in one function?
That is the Day 28 capstone. Next — as a bridge to the explorers track — agents also start pulling data from external services on demand.
@agent.tool_plain — one Python tool the agent can callGoal: agents decide when to search and when to compute.