1
0
Fork 0

added method for deleting poe account

This commit is contained in:
Raju Komati 2023-05-01 19:56:33 +05:30
parent 2ae26bfa7e
commit 4b86f50120
No known key found for this signature in database
GPG Key ID: A581A5D67A8EB090
3 changed files with 19 additions and 11 deletions

View File

@ -285,6 +285,11 @@ class Account:
cookies = open(Path(__file__).resolve().parent / 'cookies.txt', 'r').read().splitlines()
return choice(cookies)
@staticmethod
def delete_account(token: str, proxy: Optional[str] = None):
client = PoeClient(token, proxy=proxy)
client.delete_account()
class StreamingCompletion:
@staticmethod
@ -293,11 +298,11 @@ class StreamingCompletion:
custom_model: bool = None,
prompt: str = 'hello world',
token: str = '',
proxy: Optional[str] = None
proxy: Optional[str] = None,
) -> Generator[PoeResponse, None, None]:
_model = MODELS[model] if not custom_model else custom_model
proxies = { 'http': 'http://' + proxy, 'https': 'http://' + proxy } if proxy else False
proxies = {'http': 'http://' + proxy, 'https': 'http://' + proxy} if proxy else False
client = PoeClient(token)
client.proxy = proxies
@ -333,7 +338,7 @@ class Completion:
custom_model: str = None,
prompt: str = 'hello world',
token: str = '',
proxy: Optional[str] = None
proxy: Optional[str] = None,
) -> PoeResponse:
_model = MODELS[model] if not custom_model else custom_model
@ -454,14 +459,7 @@ class Poe:
response = chunk['text']
return response
def create_bot(
self,
name: str,
/,
prompt: str = '',
base_model: str = 'ChatGPT',
description: str = '',
) -> None:
def create_bot(self, name: str, /, prompt: str = '', base_model: str = 'ChatGPT', description: str = '') -> None:
if base_model not in MODELS:
raise RuntimeError('Sorry, the base_model you provided does not exist. Please check and try again.')
@ -475,3 +473,6 @@ class Poe:
def list_bots(self) -> list:
return list(self.client.bot_names.values())
def delete_account(self) -> None:
self.client.delete_account()

View File

@ -541,5 +541,11 @@ class Client:
self.get_bots()
return data
def delete_account(self) -> None:
response = self.send_query('SettingsDeleteAccountButton_deleteAccountMutation_Mutation', {})
data = response['data']['deleteAccount']
if 'viewer' not in data:
raise RuntimeError(f'Error occurred while deleting the account, Please try again!')
load_queries()

View File

@ -0,0 +1 @@
mutation SettingsDeleteAccountButton_deleteAccountMutation_Mutation{ deleteAccount { viewer { uid id } }}