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:
24
node_modules/openai/lib/ChatCompletionStreamingRunner.js
generated
vendored
Normal file
24
node_modules/openai/lib/ChatCompletionStreamingRunner.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ChatCompletionStreamingRunner = void 0;
|
||||
const ChatCompletionStream_1 = require("./ChatCompletionStream.js");
|
||||
class ChatCompletionStreamingRunner extends ChatCompletionStream_1.ChatCompletionStream {
|
||||
static fromReadableStream(stream) {
|
||||
const runner = new ChatCompletionStreamingRunner(null);
|
||||
runner._run(() => runner._fromReadableStream(stream));
|
||||
return runner;
|
||||
}
|
||||
static runTools(client, params, options) {
|
||||
const runner = new ChatCompletionStreamingRunner(
|
||||
// @ts-expect-error TODO these types are incompatible
|
||||
params);
|
||||
const opts = {
|
||||
...options,
|
||||
headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runTools' },
|
||||
};
|
||||
runner._run(() => runner._runTools(client, params, opts));
|
||||
return runner;
|
||||
}
|
||||
}
|
||||
exports.ChatCompletionStreamingRunner = ChatCompletionStreamingRunner;
|
||||
//# sourceMappingURL=ChatCompletionStreamingRunner.js.map
|
||||
Reference in New Issue
Block a user