UNPKG

@promptbook/remote-server

Version:

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

18 lines (17 loc) 388 B
import type { string_color, string_person_fullname } from '../../types/string_person_fullname'; /** * Result of generating a name */ export type GenerateNameResult = { fullname: string_person_fullname; color: string_color; }; /** * Interface for a name pool */ export type NamePool = { /** * Generates a random name */ generateName(): GenerateNameResult; };