From a0f1f07a8db1c39fbed5fdae623027c9b27756dc Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Fri, 3 May 2024 16:01:59 +0000 Subject: [PATCH] docs(readme): fix misleading timeout example value --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b8a0d9b0cb..e566a2f8d0 100644 --- a/README.md +++ b/README.md @@ -424,7 +424,7 @@ client = OpenAI( ) # Override per-request: -client.with_options(timeout=5 * 1000).chat.completions.create( +client.with_options(timeout=5.0).chat.completions.create( messages=[ { "role": "user",