11 lines
246 B
TypeScript
11 lines
246 B
TypeScript
|
|
export const HOOK_NAME = "gpt-permission-continuation"
|
||
|
|
export const CONTINUATION_PROMPT = "continue"
|
||
|
|
|
||
|
|
export const DEFAULT_STALL_PATTERNS = [
|
||
|
|
"if you want",
|
||
|
|
"would you like",
|
||
|
|
"shall i",
|
||
|
|
"do you want me to",
|
||
|
|
"let me know if",
|
||
|
|
] as const
|