From 1704cbebc8713b9a29e71db310b6cf2b5cf13bcf Mon Sep 17 00:00:00 2001 From: "t.me/xtekky" <98614666+xtekky@users.noreply.github.com> Date: Thu, 27 Apr 2023 19:15:49 +0100 Subject: _ --- testing/sqlchat_test.py | 7 ------- unfinished/easyai/main.py | 31 ------------------------------- 2 files changed, 38 deletions(-) delete mode 100644 testing/sqlchat_test.py delete mode 100644 unfinished/easyai/main.py diff --git a/testing/sqlchat_test.py b/testing/sqlchat_test.py deleted file mode 100644 index 28e9d2e3..00000000 --- a/testing/sqlchat_test.py +++ /dev/null @@ -1,7 +0,0 @@ -import sqlchat - -for response in sqlchat.StreamCompletion.create( - prompt = 'write python code to reverse a string', - messages = []): - - print(response.completion.choices[0].text, end='') \ No newline at end of file diff --git a/unfinished/easyai/main.py b/unfinished/easyai/main.py deleted file mode 100644 index 95abb12c..00000000 --- a/unfinished/easyai/main.py +++ /dev/null @@ -1,31 +0,0 @@ -from requests import get -from os import urandom -from json import loads - -sessionId = urandom(10).hex() - -headers = { - 'Accept': 'text/event-stream', - 'Accept-Language': 'en,fr-FR;q=0.9,fr;q=0.8,es-ES;q=0.7,es;q=0.6,en-US;q=0.5,am;q=0.4,de;q=0.3', - 'Cache-Control': 'no-cache', - 'Connection': 'keep-alive', - 'Pragma': 'no-cache', - 'Referer': 'http://easy-ai.ink/chat', - 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36', - 'token': 'null', -} - -while True: - prompt = input('you: ') - - params = { - 'message': prompt, - 'sessionId': sessionId - } - - for chunk in get('http://easy-ai.ink/easyapi/v1/chat/completions', params = params, - headers = headers, verify = False, stream = True).iter_lines(): - - if b'content' in chunk: - data = loads(chunk.decode('utf-8').split('data:')[1]) - print(data['content'], end='') \ No newline at end of file -- cgit v1.2.3