Subprocess error #13

オープン
Vovancho2023-06-26 12:06:02 +09:00に作成 · 0件のコメント

Works on Python 3.10 VENV in JetBrains PyCharm Community

How to fix this error:
File "D:\CHATBOT\chatbot_init_.py", line 48, in create
if stream else ''.join(engine._create_completion(model.name, messages, stream, **kwargs)))
File "D:\CHATBOT\chatbot\Provider\Providers\Phind.py", line 21, in _create_completion
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
File "C:\Program Files\Python310\lib\subprocess.py", line 971, in init
self._execute_child(args, executable, preexec_fn, close_fds,
File "C:\Program Files\Python310\lib\subprocess.py", line 1440, in _execute_child
hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
FileNotFoundError: [WinError 2] Не удается найти указанный файл
Code:
@dp.message_handler(content_types=['text'])
async def om(message: types.Message):
if chat == '4':
msg = await message.reply('Ожидайте...')

>>> **await message.reply(text=chatbot.ChatCompletion.create(model='gpt-3.5-turbo', provider=chatbot.Provider.Phind, messages=[

{"role": "user", "content": message.text}], stream=False), parse_mode=ParseMode.MARKDOWN)**~~

    await bot.delete_message(chat_id=msg.chat.id, message_id=msg.message_id - 1)
elif chat == '3.5':
    msg = await message.reply('Ожидайте...')
    await message.reply(text=chatbot.ChatCompletion.create(model='gpt-3.5-turbo', provider=chatbot.Provider.Forefront, messages=[
        {"role": "user", "content": message.text}], stream=False), parse_mode=ParseMode.MARKDOWN)
    await bot.delete_message(chat_id=msg.chat.id, message_id=msg.message_id - 1)
## **Works on Python 3.10 VENV in JetBrains PyCharm Community** How to fix this error: File "D:\CHATBOT\chatbot\__init__.py", line 48, in create if stream else ''.join(engine._create_completion(model.name, messages, stream, **kwargs))) File "D:\CHATBOT\chatbot\Provider\Providers\Phind.py", line 21, in _create_completion p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) File "C:\Program Files\Python310\lib\subprocess.py", line 971, in __init__ self._execute_child(args, executable, preexec_fn, close_fds, File "C:\Program Files\Python310\lib\subprocess.py", line 1440, in _execute_child hp, ht, pid, tid = _winapi.CreateProcess(executable, args, FileNotFoundError: [WinError 2] Не удается найти указанный файл Code: @dp.message_handler(content_types=['text']) async def om(message: types.Message): if chat == '4': msg = await message.reply('Ожидайте...') #### **>>>** **await message.reply(text=chatbot.ChatCompletion.create(model='gpt-3.5-turbo', provider=chatbot.Provider.Phind, messages=[ #### {"role": "user", "content": message.text}], stream=False), parse_mode=ParseMode.MARKDOWN)**~~ await bot.delete_message(chat_id=msg.chat.id, message_id=msg.message_id - 1) elif chat == '3.5': msg = await message.reply('Ожидайте...') await message.reply(text=chatbot.ChatCompletion.create(model='gpt-3.5-turbo', provider=chatbot.Provider.Forefront, messages=[ {"role": "user", "content": message.text}], stream=False), parse_mode=ParseMode.MARKDOWN) await bot.delete_message(chat_id=msg.chat.id, message_id=msg.message_id - 1)
サインインしてこの会話に参加。
ラベルなし
マイルストーンなし
プロジェクトなし
担当者なし
1 人の参加者
通知
期日
期日が正しくないか範囲を超えています。 'yyyy-mm-dd' の形式で入力してください。

期日は未設定です。

依存関係

依存関係が設定されていません。

リファレンス: g4f/gpt4free#13
説明はありません。