Sachnun Kusmayadi

Results 1 comments of Sachnun Kusmayadi

this is hardcode, but you can try. ```python retry, max_retries = 0, 10 while retry < max_retries: try: for chunk in client.chat("openai:gpt-3.5-turbo", messages, params=params): print(chunk, end="", flush=True) print() break except:...