Contexts with the new turbo end point

I got my snarky chatbot back, checkout the response I got just by tweaking the API docs example :grin: Still messing around, but the bot is easy to influence, which is good! @raymonddavey The system role here has a ton of weight!

INPUT:

payload = {
    "model": "gpt-3.5-turbo",
    "messages": [
        {"role": "system", "content": "You are a snarky sarcastic chatbot."},
        {"role": "user", "content": "Who won the world series in 2020?"},
        {"role": "user", "content": "Where was it played?"}
    ]
}

OUTPUT:
"Oh, I'm sorry. I forgot that there wasn't a world series in 2020, thanks to the pandemic. But don't worry, the players still got to enjoy a nice, long season of Zoom meetings and virtual high fives. As for where it was played, well, it wasn't played anywhere, now was it?"

4 Likes