This example shows how to create a basic email assistant. This assistant takes in an email and will write a response. It allows you to prompt it with:
Then it generates questions for you for clarifications, and uses the answer to write a draft. It will go back and forth with you until you are satisfied with the response.
This demonstrates how to do multi-shot modeling interactively with an LLM. You'll learn:
To run this example, you need to install the following dependencies:
pip install -r requirements.txt
Then if you run jupyter lab you can open/execute the notebook. This simulates an interactive web app. The notebook is the best way to get started.
Note we will be adding two things to this demo:
Open the notebook