UNPKG

@promptbook/remote-server

Version:

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

9 lines (8 loc) 470 B
import type { LlmExecutionTools } from '../../execution/LlmExecutionTools'; import { MultipleLlmExecutionTools } from './MultipleLlmExecutionTools'; /** * Just returns the given `LlmExecutionTools` or joins multiple into one * * @public exported from `@promptbook/core` */ export declare function getSingleLlmExecutionTools(oneOrMoreLlmExecutionTools: undefined | LlmExecutionTools | ReadonlyArray<LlmExecutionTools>): LlmExecutionTools | MultipleLlmExecutionTools;