From d0e9b9de9796e076502e8243a33afb6332dd8f99 Mon Sep 17 00:00:00 2001 From: "t.me/xtekky" <98614666+xtekky@users.noreply.github.com> Date: Wed, 26 Apr 2023 12:02:36 +0100 Subject: . --- unfinished/easyai/main.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 unfinished/easyai/main.py (limited to 'unfinished') diff --git a/unfinished/easyai/main.py b/unfinished/easyai/main.py new file mode 100644 index 00000000..0607d58a --- /dev/null +++ b/unfinished/easyai/main.py @@ -0,0 +1,26 @@ +import requests + +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: + params = { + 'message': 'what is my name', + 'sessionId': '2eacb8ad826056587598', + } + + for chunk in requests.get('http://easy-ai.ink/easyapi/v1/chat/completions', params=params, + headers=headers, verify=False, stream=True).iter_lines(): + + if b'data:' in chunk: + print(chunk) + + print(chunk) \ No newline at end of file -- cgit v1.2.3