16 lines
242 B
TypeScript
16 lines
242 B
TypeScript
// Allowed values for /api/instructions security
|
|
export const ALLOWED_OPERATIONS = [
|
|
'search',
|
|
'context',
|
|
'summarize',
|
|
'import',
|
|
'export'
|
|
];
|
|
|
|
export const ALLOWED_TOPICS = [
|
|
'workflow',
|
|
'search_params',
|
|
'examples',
|
|
'all'
|
|
];
|