File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -444,7 +444,7 @@ Note that requests which time out will be [retried twice by default](#retries).
444
444
## Auto-pagination
445
445
446
446
List methods in the OpenAI API are paginated.
447
- You can use ` for await … of ` syntax to iterate through items across all pages:
447
+ You can use the ` for await … of ` syntax to iterate through items across all pages:
448
448
449
449
``` ts
450
450
async function fetchAllFineTuningJobs(params ) {
@@ -457,7 +457,7 @@ async function fetchAllFineTuningJobs(params) {
457
457
}
458
458
```
459
459
460
- Alternatively, you can make request a single page at a time:
460
+ Alternatively, you can request a single page at a time:
461
461
462
462
``` ts
463
463
let page = await client .fineTuning .jobs .list ({ limit: 20 });
You can’t perform that action at this time.
0 commit comments