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:
25
node_modules/openai/resources/beta/beta.js
generated
vendored
Normal file
25
node_modules/openai/resources/beta/beta.js
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
"use strict";
|
||||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.Beta = void 0;
|
||||
const tslib_1 = require("../../internal/tslib.js");
|
||||
const resource_1 = require("../../core/resource.js");
|
||||
const AssistantsAPI = tslib_1.__importStar(require("./assistants.js"));
|
||||
const assistants_1 = require("./assistants.js");
|
||||
const RealtimeAPI = tslib_1.__importStar(require("./realtime/realtime.js"));
|
||||
const realtime_1 = require("./realtime/realtime.js");
|
||||
const ThreadsAPI = tslib_1.__importStar(require("./threads/threads.js"));
|
||||
const threads_1 = require("./threads/threads.js");
|
||||
class Beta extends resource_1.APIResource {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.realtime = new RealtimeAPI.Realtime(this._client);
|
||||
this.assistants = new AssistantsAPI.Assistants(this._client);
|
||||
this.threads = new ThreadsAPI.Threads(this._client);
|
||||
}
|
||||
}
|
||||
exports.Beta = Beta;
|
||||
Beta.Realtime = realtime_1.Realtime;
|
||||
Beta.Assistants = assistants_1.Assistants;
|
||||
Beta.Threads = threads_1.Threads;
|
||||
//# sourceMappingURL=beta.js.map
|
||||
Reference in New Issue
Block a user