We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6ab2c6 commit 0717591Copy full SHA for 0717591
README.md
@@ -210,7 +210,7 @@ Note that requests which time out will be [retried twice by default](#retries).
210
## Auto-pagination
211
212
List methods in the OpenAI API are paginated.
213
-You can use `for await … of` syntax to iterate through items across all pages:
+You can use the `for await … of` syntax to iterate through items across all pages:
214
215
```ts
216
async function fetchAllFineTuningJobs(params) {
@@ -223,7 +223,7 @@ async function fetchAllFineTuningJobs(params) {
223
}
224
```
225
226
-Alternatively, you can make request a single page at a time:
+Alternatively, you can request a single page at a time:
227
228
229
let page = await client.fineTuning.jobs.list({ limit: 20 });
0 commit comments