(chatState: ChatStateType)
| 446 | } |
| 447 | |
| 448 | export async function run(chatState: ChatStateType) { |
| 449 | console.log('creating or opening task database...'); |
| 450 | |
| 451 | const taskyonDB = await getTaskyonDB(); |
| 452 | console.log('start task taskWorker'); |
| 453 | await taskWorker(chatState, taskyonDB); |
| 454 | } // Helper function to handle function execution |
no test coverage detected