summaryrefslogtreecommitdiffstats
path: root/unfinished/easyai/main.py
blob: 451adb3b3f53e6f9572e982de2b05acfd37a60c8 (plain) (blame)
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
35
36
37
38
39
40
41
42
# Import necessary libraries
from json import loads
from os import urandom

from requests import get

# Generate a random session ID
sessionId = urandom(10).hex()

# Set up headers for the API request
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',
}

# Main loop to interact with the AI
while True:
    # Get user input
    prompt = input('you: ')

    # Set up parameters for the API request
    params = {
        'message': prompt,
        'sessionId': sessionId
    }

    # Send request to the API and process the response
    for chunk in get('http://easy-ai.ink/easyapi/v1/chat/completions', params=params,
                     headers=headers, verify=False, stream=True).iter_lines():

        # Check if the chunk contains the 'content' field
        if b'content' in chunk:
            # Parse the JSON data and print the content
            data = loads(chunk.decode('utf-8').split('data:')[1])

            print(data['content'], end='')