labteral / chatgpt-python

Unofficial Python SDK for OpenAI's ChatGPT
https://labteral.github.io/chatgpt-python/
GNU General Public License v3.0
523 stars 76 forks source link

timeout #11

Closed kazu-321 closed 1 year ago

kazu-321 commented 1 year ago

It takes time to respond and is canceled. Is it possible to set a timeout?

kazu-321 commented 1 year ago

i want to use it for my discord bot. ... async with message.channel.typing(): await message.reply(chat.chat(message.content)) but it takes time and there are no reply....

AlexSua commented 1 year ago

Hello kazu, with the next version this problem will be solved. You will be able to control the timeout yourself.

kazu-321 commented 1 year ago

I looked at this gits code and understood that i can control timeout by giving args like Conversation(timeout=500) Thank you