Initial commit: KidsAI Explorer with complete functionality
- Complete KidsAI Explorer application - Multi-language support (English/German) - AI-powered educational guidance using OpenAI - Interactive chat interface for children - Proper placeholder translation fixes - Mobile-responsive design - Educational framework for critical thinking
This commit is contained in:
23
node_modules/openai/resources/fine-tuning/jobs/checkpoints.mjs
generated
vendored
Normal file
23
node_modules/openai/resources/fine-tuning/jobs/checkpoints.mjs
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
import { APIResource } from "../../../core/resource.mjs";
|
||||
import { CursorPage } from "../../../core/pagination.mjs";
|
||||
import { path } from "../../../internal/utils/path.mjs";
|
||||
export class Checkpoints extends APIResource {
|
||||
/**
|
||||
* List checkpoints for a fine-tuning job.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* // Automatically fetches more pages as needed.
|
||||
* for await (const fineTuningJobCheckpoint of client.fineTuning.jobs.checkpoints.list(
|
||||
* 'ft-AF1WoRqd3aJAHsqc9NY7iL8F',
|
||||
* )) {
|
||||
* // ...
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
list(fineTuningJobID, query = {}, options) {
|
||||
return this._client.getAPIList(path `/fine_tuning/jobs/${fineTuningJobID}/checkpoints`, (CursorPage), { query, ...options });
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=checkpoints.mjs.map
|
||||
Reference in New Issue
Block a user