fix: models command not working
This commit is contained in:
@@ -3455,7 +3455,7 @@ Examples:
|
|||||||
.action(async (options) => {
|
.action(async (options) => {
|
||||||
// Initialize TaskMaster
|
// Initialize TaskMaster
|
||||||
const taskMaster = initTaskMaster({
|
const taskMaster = initTaskMaster({
|
||||||
tasksPath: options.file || true
|
tasksPath: options.file || false
|
||||||
});
|
});
|
||||||
// Validate flags: cannot use multiple provider flags simultaneously
|
// Validate flags: cannot use multiple provider flags simultaneously
|
||||||
const providerFlags = [
|
const providerFlags = [
|
||||||
@@ -3485,7 +3485,7 @@ Examples:
|
|||||||
// Action 1: Run Interactive Setup
|
// Action 1: Run Interactive Setup
|
||||||
console.log(chalk.blue('Starting interactive model setup...')); // Added feedback
|
console.log(chalk.blue('Starting interactive model setup...')); // Added feedback
|
||||||
try {
|
try {
|
||||||
await runInteractiveSetup(projectRoot);
|
await runInteractiveSetup(taskMaster.getProjectRoot());
|
||||||
// runInteractiveSetup logs its own completion/error messages
|
// runInteractiveSetup logs its own completion/error messages
|
||||||
} catch (setupError) {
|
} catch (setupError) {
|
||||||
console.error(
|
console.error(
|
||||||
|
|||||||
Reference in New Issue
Block a user