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:
20
node_modules/openai/resources/beta/beta.mjs
generated
vendored
Normal file
20
node_modules/openai/resources/beta/beta.mjs
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
import { APIResource } from "../../core/resource.mjs";
|
||||
import * as AssistantsAPI from "./assistants.mjs";
|
||||
import { Assistants, } from "./assistants.mjs";
|
||||
import * as RealtimeAPI from "./realtime/realtime.mjs";
|
||||
import { Realtime, } from "./realtime/realtime.mjs";
|
||||
import * as ThreadsAPI from "./threads/threads.mjs";
|
||||
import { Threads, } from "./threads/threads.mjs";
|
||||
export class Beta extends 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);
|
||||
}
|
||||
}
|
||||
Beta.Realtime = Realtime;
|
||||
Beta.Assistants = Assistants;
|
||||
Beta.Threads = Threads;
|
||||
//# sourceMappingURL=beta.mjs.map
|
||||
Reference in New Issue
Block a user