import os import json import time import subprocess from ...typing import sha256, Dict, get_type_hints url = 'https://phind.com' model = ['gpt-4'] supports_stream = True def _create_completion(model: str, messages: list, stream: bool, **kwargs): path = os.path.dirname(os.path.realpath(__file__)) config = json.dumps({ 'model': model, 'messages': messages}, separators=(',', ':')) cmd = ['python', f'{path}/helpers/phind.py', config] p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) for line in iter(p.stdout.readline, b''): if b'