mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-08-14 04:40:36 +03:00
16 lines
431 B
TypeScript
16 lines
431 B
TypeScript
/** Represents prompt variable type. */
|
|
export const PromptVariableType = {
|
|
SCHEMA: 'schema',
|
|
SCHEMA_THESAURUS: 'schema.thesaurus',
|
|
SCHEMA_GRAPH: 'schema.graph',
|
|
SCHEMA_TYPE_GRAPH: 'schema.type-graph',
|
|
|
|
CONSTITUENTA: 'constituenta',
|
|
CONSTITUENTA_SYNTAX_TREE: 'constituenta.ast',
|
|
|
|
OSS: 'oss',
|
|
|
|
BLOCK: 'block'
|
|
} as const;
|
|
export type PromptVariableType = (typeof PromptVariableType)[keyof typeof PromptVariableType];
|