24 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			24 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|  | "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
 |