feat: add first version of workbench, increase token limit, improve system prompt
This commit is contained in:
17
packages/bolt/app/utils/debounce.ts
Normal file
17
packages/bolt/app/utils/debounce.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
export function debounce<Args extends any[]>(fn: (...args: Args) => void, delay = 100) {
|
||||
if (delay === 0) {
|
||||
return fn;
|
||||
}
|
||||
|
||||
let timer: number | undefined;
|
||||
|
||||
return function <U>(this: U, ...args: Args) {
|
||||
const context = this;
|
||||
|
||||
clearTimeout(timer);
|
||||
|
||||
timer = window.setTimeout(() => {
|
||||
fn.apply(context, args);
|
||||
}, delay);
|
||||
};
|
||||
}
|
||||
3
packages/bolt/app/utils/unreachable.ts
Normal file
3
packages/bolt/app/utils/unreachable.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export function unreachable(message: string): never {
|
||||
throw new Error(`Unreachable: ${message}`);
|
||||
}
|
||||
Reference in New Issue
Block a user