I am creating a chat session, conducting a series of automatic requests but I can't find a way using the python API to close the session in order to initiate another and not leave the context alive.
I am creating the session using:
chat_model = GenerativeModel('gemini-pro')
chat_model.start_chat()
Any help will be highly appreciated.
Thank you.
The context is purely stored locally on your system where the code is running.
The easiest way to initiate a new session is to create a new model with
GenerativeModel('gemini-pro')
again.