2ba2f8f5f7
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
export interface TaskSystemConfig {
|
|
experimental?: {
|
|
task_system?: boolean
|
|
}
|
|
}
|
|
|
|
export function isTaskSystemEnabled(config: TaskSystemConfig): boolean {
|
|
return config.experimental?.task_system ?? false
|
|
}
|