File size: 1,048 Bytes
e784238 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# from poe_api_wrapper import PoeApi
# import pprint
# client = PoeApi("sXvCnfYy8CHnXNTRlxhmVg==")
# # print(client.get_chat_history()['data'])
# bot = "gpt3_5"
# message = ''' hello'''
# # Create new chat thread
# # Streamed example:
# # for chunk in client.send_message(bot, message,chatCode='TWVzc2FnZTozMDY2MzYwNjQ5OQ=='):
# # pprint.pprint(chunk)
# # print("\n")
# # # Non-streamed example:
# for chunk in client.send_message(bot, message,chatCode=''):
# pass
# pprint.pprint(chunk)
# # You can get chatCode and chatId of created thread to continue the conversation
# chatCode = chunk["chatCode"]
# chatId = chunk["chatId"]
# # You can get the meaningful title as well
# title = chunk["title"]
# # Send message to an existing chat thread
# # 1. Using chatCode
# for chunk in client.send_message(bot, message, chatCode="2i58ciex72dom7im83r"):
# print(chunk["response"], end="", flush=True)
# 2. Using chatId
# for chunk in client.send_message(bot, message, chatId=59726162):
# print(chunk["response"], end="", flush=True) |