You can access Unit 1 on hf.co/learn 👉 here
Title | Description |
---|---|
Definition of an Agent | General example of what agents can do without technical jargon. |
Explain LLMs | Explanation of Large Language Models, including the family tree of models and suitable models for agents. |
Messages and Special Tokens | Explanation of messages, special tokens, and chat-template usage. |
Dummy Agent Library | Introduction to using a dummy agent library and serverless API. |
Tools | Overview of Pydantic for agent tools and other common tool formats. |
Agent Steps and Structure | Steps involved in an agent, including thoughts, actions, observations, and a comparison between code agents and JSON agents. |
Thoughts | Explanation of thoughts and the ReAct approach. |
Actions | Overview of actions and stop and parse approach. |
Observations | Explanation of observations and append result to reflect. |
Quizz | Contains quizzes to test understanding of the concepts. |
Simple Use Case | Provides a simple use case exercise using datetime and a Python function as a tool. |