16 lines
436 B
TypeScript
16 lines
436 B
TypeScript
/** Represents prompt variable type. */
|
|
export const PromptVariableType = {
|
|
BLOCK: 'block',
|
|
|
|
OSS: 'oss',
|
|
|
|
SCHEMA: 'schema',
|
|
SCHEMA_THESAURUS: 'schema.thesaurus',
|
|
// SCHEMA_GRAPH: 'schema.graph',
|
|
// SCHEMA_TYPE_GRAPH: 'schema.type-graph',
|
|
|
|
CONSTITUENTA: 'constituenta',
|
|
CONSTITUENTA_SYNTAX_TREE: 'constituent.ast'
|
|
} as const;
|
|
export type PromptVariableType = (typeof PromptVariableType)[keyof typeof PromptVariableType];
|