UNPKG

@promptbook/remote-server

Version:

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

10 lines (9 loc) 395 B
import type { AvailableModel } from '../../../execution/AvailableModel'; /** * Utility to assert that all models in the provided array have unique `modelName` values. * * This is internal utility for unit tests to ensure no duplicate model names exist. * * @private internal utility of unit tests */ export declare function assertUniqueModels(models: ReadonlyArray<AvailableModel>): void;