- This is a quick overview of the technology we’ll use for this project, which will be simplified from the Kitsune project. We won’t use any text-to-speech or store the messages long term for this project, so that we can keep it simple.
- We’ll use NextJS to host the same chatbot project from the last one, which will handle grabbing messags to from the user, and displaying next messages from OpenAI.
- Just like before, we will hit the
/chat endpoint, which calls our chatbot function. And remember, Chalice will take care of all of this for us, from the Lambda function creation to the API gateway route, so this will save us a ton of time.
- Instead of using regular OpenAI function calls, we’ll adapt our OpenAI function to use the Function Calling functionality. This