import loguru from config.chatgpt_config import ChatGPTConfig from utils.chatgpt import ChatGPT logger = loguru.logger if __name__ == "__main__": chatGPTAgent = ChatGPT(ChatGPTConfig()) # the title of this conversation will be new-chat. We can delete it later. text, conversation_id = chatGPTAgent.send_new_message("Hello, world!") print(text, conversation_id) # get history id history = chatGPTAgent.get_conversation_history() print(history) for uuid in history: print(uuid) if history[uuid].lower() == "new chat": result = chatGPTAgent.delete_conversation(uuid) print(result) history = chatGPTAgent.get_conversation_history() print(history)