From 3f5e7a62dc2bda2828c11b9df41a71e438649e0e Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Wed, 20 Mar 2024 20:02:10 +0000 Subject: [PATCH] docs(readme): consistent use of sentence case in headings --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index befe927cea..80d0a42645 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ asyncio.run(main()) Functionality between the synchronous and asynchronous clients is otherwise identical. -## Streaming Responses +## Streaming responses We provide support for streaming responses using Server Side Events (SSE). @@ -281,7 +281,7 @@ completion = client.chat.completions.create( ) ``` -## File Uploads +## File uploads Request parameters that correspond to file uploads can be passed as `bytes`, a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance or a tuple of `(filename, contents, media type)`.