@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
12 lines (11 loc) • 434 B
TypeScript
/**
* Promptbook is the **core concept of this package**.
* It represents a series of tasks chained together to form a pipeline / one big task with input and result parameters.
*
* Represents a Promptbook pipeline defined as a string.
*
* @see The main Promptbook documentation for more details: https://github.com/webgptorg/promptbook#promptbook
*/
export type PipelineString = string & {
readonly _type: 'Promptbook';
};