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/audio/audio.mjs
generated
vendored
Normal file
20
node_modules/openai/resources/audio/audio.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 SpeechAPI from "./speech.mjs";
|
||||
import { Speech } from "./speech.mjs";
|
||||
import * as TranscriptionsAPI from "./transcriptions.mjs";
|
||||
import { Transcriptions, } from "./transcriptions.mjs";
|
||||
import * as TranslationsAPI from "./translations.mjs";
|
||||
import { Translations, } from "./translations.mjs";
|
||||
export class Audio extends APIResource {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.transcriptions = new TranscriptionsAPI.Transcriptions(this._client);
|
||||
this.translations = new TranslationsAPI.Translations(this._client);
|
||||
this.speech = new SpeechAPI.Speech(this._client);
|
||||
}
|
||||
}
|
||||
Audio.Transcriptions = Transcriptions;
|
||||
Audio.Translations = Translations;
|
||||
Audio.Speech = Speech;
|
||||
//# sourceMappingURL=audio.mjs.map
|
||||
Reference in New Issue
Block a user