mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2025-12-29 09:44:50 +00:00
Fix None object
This commit is contained in:
parent
c99815ce04
commit
6bd5d9990e
1 changed files with 3 additions and 1 deletions
|
|
@ -85,13 +85,15 @@ async def openai_chatbot(_, ctx: Message, strings):
|
||||||
async for chunk in response:
|
async for chunk in response:
|
||||||
if not chunk.choices:
|
if not chunk.choices:
|
||||||
continue
|
continue
|
||||||
|
if not chunk.choices[0].delta.content:
|
||||||
|
continue
|
||||||
num += 1
|
num += 1
|
||||||
answer += chunk.choices[0].delta.content
|
answer += chunk.choices[0].delta.content
|
||||||
if num == 30:
|
if num == 30:
|
||||||
await msg.edit_msg(html.escape(answer))
|
await msg.edit_msg(html.escape(answer))
|
||||||
await asyncio.sleep(1.5)
|
await asyncio.sleep(1.5)
|
||||||
num = 0
|
num = 0
|
||||||
await msg.edit_msg(html.escape(f"{answer}\n\nPowered by: <code>GPT 4o</code>"))
|
await msg.edit_msg(html.escape(f"{answer}\n\n<b>Powered by:</b> <code>GPT 4o</code>"))
|
||||||
except MessageTooLong:
|
except MessageTooLong:
|
||||||
answerlink = await post_to_telegraph(
|
answerlink = await post_to_telegraph(
|
||||||
False, "MissKaty ChatBot ", html.escape(f"<code>{answer}</code>")
|
False, "MissKaty ChatBot ", html.escape(f"<code>{answer}</code>")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue