@promptbook/remote-server
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
10 lines (9 loc) • 326 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.
*
* @see @@@ https://github.com/webgptorg/promptbook#promptbook
*/
export type PipelineString = string & {
readonly _type: 'Promptbook';
};