UNPKG

@promptbook/remote-server

Version:

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

10 lines (9 loc) 191 B
import type { Promisable } from 'type-fest'; /** * Still in development [🏳]. * * @private */ export type AutomaticTranslator = { translate(message: string): Promisable<string>; };