UNPKG

@promptbook/remote-client

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

12 lines (11 loc) 432 B
import type { AutomaticTranslator } from './AutomaticTranslator'; /** * This will wrap an automatic translator and log each translation into the console * * @private still in development [🏳] */ export declare class DebugAutomaticTranslator implements AutomaticTranslator { private readonly automaticTranslator; constructor(automaticTranslator: AutomaticTranslator); translate(message: string): Promise<string>; }