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:
16
node_modules/openai/resources/beta/realtime/realtime.mjs
generated
vendored
Normal file
16
node_modules/openai/resources/beta/realtime/realtime.mjs
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
import { APIResource } from "../../../core/resource.mjs";
|
||||
import * as SessionsAPI from "./sessions.mjs";
|
||||
import { Sessions, } from "./sessions.mjs";
|
||||
import * as TranscriptionSessionsAPI from "./transcription-sessions.mjs";
|
||||
import { TranscriptionSessions, } from "./transcription-sessions.mjs";
|
||||
export class Realtime extends APIResource {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.sessions = new SessionsAPI.Sessions(this._client);
|
||||
this.transcriptionSessions = new TranscriptionSessionsAPI.TranscriptionSessions(this._client);
|
||||
}
|
||||
}
|
||||
Realtime.Sessions = Sessions;
|
||||
Realtime.TranscriptionSessions = TranscriptionSessions;
|
||||
//# sourceMappingURL=realtime.mjs.map
|
||||
Reference in New Issue
Block a user