2025-07-11 13:34:00 +03:00
|
|
|
/** Represents prompt variable type. */
|
|
|
|
export const PromptVariableType = {
|
|
|
|
SCHEMA: 'schema',
|
2025-07-21 11:15:28 +03:00
|
|
|
SCHEMA_THESAURUS: 'schema.thesaurus',
|
2025-07-13 18:00:40 +03:00
|
|
|
// SCHEMA_GRAPH: 'schema.graph',
|
|
|
|
// SCHEMA_TYPE_GRAPH: 'schema.type-graph',
|
2025-07-11 13:34:00 +03:00
|
|
|
|
2025-07-21 11:15:28 +03:00
|
|
|
CONSTITUENTA: 'constituenta',
|
2025-07-22 20:39:57 +03:00
|
|
|
CONSTITUENTA_SYNTAX_TREE: 'constituent.ast',
|
|
|
|
|
|
|
|
OSS: 'oss',
|
|
|
|
|
|
|
|
BLOCK: 'block'
|
2025-07-11 13:34:00 +03:00
|
|
|
} as const;
|
|
|
|
export type PromptVariableType = (typeof PromptVariableType)[keyof typeof PromptVariableType];
|