20 lines
		
	
	
		
			823 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
		
			823 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|  | import { AbstractChatCompletionRunner, } from "./AbstractChatCompletionRunner.mjs"; | ||
|  | import { isAssistantMessage } from "./chatCompletionUtils.mjs"; | ||
|  | export class ChatCompletionRunner extends AbstractChatCompletionRunner { | ||
|  |     static runTools(client, params, options) { | ||
|  |         const runner = new ChatCompletionRunner(); | ||
|  |         const opts = { | ||
|  |             ...options, | ||
|  |             headers: { ...options?.headers, 'X-Stainless-Helper-Method': 'runTools' }, | ||
|  |         }; | ||
|  |         runner._run(() => runner._runTools(client, params, opts)); | ||
|  |         return runner; | ||
|  |     } | ||
|  |     _addMessage(message, emit = true) { | ||
|  |         super._addMessage(message, emit); | ||
|  |         if (isAssistantMessage(message) && message.content) { | ||
|  |             this._emit('content', message.content); | ||
|  |         } | ||
|  |     } | ||
|  | } | ||
|  | //# sourceMappingURL=ChatCompletionRunner.mjs.map
 |