Recap & Practice

Check your understanding
1/8

What does a class offer over a dict that matters most once a typo is involved?

Exercise · Graded

Implement AgentProfile as a BaseModel with four fields (name: str, model: str, temperature: float = 0.7, metadata: dict) plus a summary() method. Then implement build_profile_from_raw to construct an AgentProfile from a raw dict by unpacking it with **.