Connor Hill's Chatbot API

This page serves as an API endpoint for the chatbot. To interact with the chatbot, send a POST request to the /chat endpoint with the following structure:

{
    "messages": [
        {"role": "user", "content": "Your message here"}
    ]
}
    

The API will respond with a JSON object containing the chatbot's response.