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:
27
node_modules/openai/resources/fine-tuning/jobs/checkpoints.js
generated
vendored
Normal file
27
node_modules/openai/resources/fine-tuning/jobs/checkpoints.js
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
"use strict";
|
||||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.Checkpoints = void 0;
|
||||
const resource_1 = require("../../../core/resource.js");
|
||||
const pagination_1 = require("../../../core/pagination.js");
|
||||
const path_1 = require("../../../internal/utils/path.js");
|
||||
class Checkpoints extends resource_1.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((0, path_1.path) `/fine_tuning/jobs/${fineTuningJobID}/checkpoints`, (pagination_1.CursorPage), { query, ...options });
|
||||
}
|
||||
}
|
||||
exports.Checkpoints = Checkpoints;
|
||||
//# sourceMappingURL=checkpoints.js.map
|
||||
Reference in New Issue
Block a user