forked from Pavel_Durov/python_bot
fix
This commit is contained in:
parent
9315a123f1
commit
1a6d0e7e91
@ -26,18 +26,18 @@ async def send(message: types.Message):
|
|||||||
)
|
)
|
||||||
await message.reply(response['choices'][0]['text'])
|
await message.reply(response['choices'][0]['text'])
|
||||||
|
|
||||||
# elif message.reply_to_message.from_id:
|
elif message.reply_to_message.bot.id:
|
||||||
# response = openai.Completion.create(
|
response = openai.Completion.create(
|
||||||
# model="text-davinci-003",
|
model="text-davinci-003",
|
||||||
# prompt=message.text,
|
prompt=message.text,
|
||||||
# temperature=0.7,
|
temperature=0.7,
|
||||||
# max_tokens=1000,
|
max_tokens=1000,
|
||||||
# top_p=1.0,
|
top_p=1.0,
|
||||||
# frequency_penalty=0.0,
|
frequency_penalty=0.0,
|
||||||
# presence_penalty=0.6,
|
presence_penalty=0.6,
|
||||||
# stop=["сброс"]
|
stop=["сброс"]
|
||||||
# )
|
)
|
||||||
# await message.reply(response['choices'][0]['text'])
|
await message.reply(response['choices'][0]['text'])
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user