We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 813cb44 commit c6c9f9aCopy full SHA for c6c9f9a
README.md
@@ -444,7 +444,7 @@ Note that requests which time out will be [retried twice by default](#retries).
444
## Auto-pagination
445
446
List methods in the OpenAI API are paginated.
447
-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:
448
449
```ts
450
async function fetchAllFineTuningJobs(params) {
@@ -457,7 +457,7 @@ async function fetchAllFineTuningJobs(params) {
457
}
458
```
459
460
-Alternatively, you can make request a single page at a time:
+Alternatively, you can request a single page at a time:
461
462
463
let page = await client.fineTuning.jobs.list({ limit: 20 });
0 commit comments