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 @@ -210,7 +210,7 @@ Note that requests which time out will be [retried twice by default](#retries).
210
210
## Auto-pagination
211
211
212
212
List methods in the OpenAI API are paginated.
213
- You can use ` for await … of ` syntax to iterate through items across all pages:
213
+ You can use the ` for await … of ` syntax to iterate through items across all pages:
214
214
215
215
``` ts
216
216
async function fetchAllFineTuningJobs(params ) {
@@ -223,7 +223,7 @@ async function fetchAllFineTuningJobs(params) {
223
223
}
224
224
```
225
225
226
- Alternatively, you can make request a single page at a time:
226
+ Alternatively, you can request a single page at a time:
227
227
228
228
``` ts
229
229
let page = await client .fineTuning .jobs .list ({ limit: 20 });
You can’t perform that action at this time.
0 commit comments