Lesson 0: Introduction
0.1 Welcome 0.2 Office Hours

Lesson 1.9: AI Agent Chat Bot

In our previous step, we created an AI agent that can generate text based on a prompt. In this step, we will wrap this agent into a chatbot that can interact with the user on the command line.

Let's use the following prompt to create a chatbot:

Create chatbot_agent.py script, which is a chatbot that can interact with the user on the command line.

The chatbot should greet the user, ask for input, and generate a response based on the input. The chatbot should continue the conversation until the user types "exit".

The chatbot should use the AI agent we created in first_agent.py to handle the conversation.