@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
12 lines (11 loc) • 586 B
TypeScript
import type { string_reserved_parameter_name_private } from './string_reserved_parameter_name_private';
import type { string_parameter_value_private } from './string_parameter_value_private';
/**
* Represents a mapping of reserved parameter names to their values.
* Reserved parameters are used internally by the pipeline and should not be set by users.
*
* Note: [🚉] This is fully serializable as JSON
*
* @private internal utility of `Parameters.ts`
*/
export type ReservedParameters_private = Record<string_reserved_parameter_name_private, string_parameter_value_private>;