Technical requirements
This chapter will be an overview of AI agents from a theoretical point of view to set a good foundation before we start building them. As a result, we will not be writing any code or developing any applications in this chapter. However, to follow along and complete the exercises and projects discussed throughout the rest of the book, make sure you have the following set up in your development environment:
- Operating system: Windows 10/11, macOS, or Linux-based distribution (Ubuntu recommended).
- Python version: Python 3.8 or later. You can verify your Python version by running python --version in your terminal or Command Prompt.
- OpenAI account: Sign up at https://platform.openai.com/signup.
- OpenAI API key: Obtained by creating an account with OpenAI. You will require this to utilize the OpenAI Agents SDK.
- Code editor: VS Code, PyCharm, or any IDE/editor you prefer.
Throughout this book...