I need some help with the Completion.create method.
I'm saving previous messages in a .json file with the following layout: ```json
{
"\nUser: Who are you Rachel?": "\n\nRachel: I am Rachel, a chatbot!.\n",
"\nUser: Rachel how old are you?": "\n\nRachel: I don't have a exact age but I was created on xxxxx.\n",
"\nUser: You are funny Rachel": "\n\nRachel: Why thank you :).\n",
}
I'm passing the log to my openai call with this line: `prompt_text = f'{chat_log}{restart_sequence}: {question}{start_sequence}'`, where chat_log being the content of the `.json` file, restart_sequence being "\nUser:", question being the discord message and start_sequence being "\n\nRachel".
When my `.json` file exceeds the exact amount of 83 lines (aka. 83 messages), it won't get passed to the openai api anymore and my bot won't generate any new message.
Is that a bug, do I need do change something or did I miss something or anything else? Any help or advice is highly appreciated!