Chatbot Demo
This is a working chatbot powered by the OpenAI API
Here at our /chatbot route (in the /chatbot/+page.svelte component), we have an input field where we can input text and send that to our /api/chat/+server.ts file which instantiates a new OpenAI object/class with our OpenAI API key. When we input text and click 'Send', it is sent to the OpenAI API. The API reads our POST request and subsequently returns its response back to us.
Bot: Hello! How can I help?