Interface IRWSPromptStreamExecutor
interface IRWSPromptStreamExecutor { promptStream: ((prompt,
read,
end,
debugVars?) => Promise<RWSPrompt>); } Properties
promptStream
promptStream: ((prompt,
read,
end,
debugVars?) => Promise<RWSPrompt>) Type declaration
- (prompt, read, end, debugVars?): Promise<RWSPrompt>
Parameters
read: ((chunk) => void)
- (chunk): void
Returns void
end: (() => void)
Optional
debugVars: any