Interface ExportLLM
interface ExportLLM {
logger?: BasicLogger;
oracleText: boolean;
output: string;
path: string;
types: boolean;
}
logger?: BasicLogger;
oracleText: boolean;
output: string;
path: string;
types: boolean;
}
Hierarchy
- Command
- ExportLLM (View Summary)
Index
Properties
Properties
Optionallogger
Optional logger interface.
oracleText
oracleText: boolean
When false, rules oracle text is omitted to reduce LLM token count.
output
output: string
Output file or directory path for exported data.
path
path: string
Input card JSON DB file or directory path.
types
types: boolean
When true, the llmdb.d.ts type declaration is output.
Config object for
export-llmcommand.