vesper-wizard 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/wizard.js +0 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vesper-wizard",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Interactive setup wizard for Vesper projects",
5
5
  "bin": {
6
6
  "vesper-wizard": "wizard.js"
package/wizard.js CHANGED
@@ -6,21 +6,6 @@ const fs = require('fs');
6
6
  const path = require('path');
7
7
 
8
8
  async function main() {
9
- // Step 2.5: Dataset ID with auto-detection
10
- const { datasetIdRaw } = await inquirer.prompt([
11
- {
12
- type: 'input',
13
- name: 'datasetIdRaw',
14
- message: 'Dataset ID (e.g., kaggle:mlg-ulb/creditcardfraud or mlg-ulb/creditcardfraud):',
15
- default: '',
16
- },
17
- ]);
18
- let datasetId = datasetIdRaw.trim();
19
- // Auto-detect Kaggle format if missing prefix
20
- if (datasetId && !datasetId.includes(':') && datasetId.includes('/')) {
21
- datasetId = 'kaggle:' + datasetId;
22
- console.log(`Auto-detected Kaggle dataset. Using ID: ${datasetId}`);
23
- }
24
9
  console.log('\nWelcome to the Vesper Wizard!\n');
25
10
 
26
11
  // Step 1: Project basics
@@ -82,7 +67,6 @@ async function main() {
82
67
  dataDir,
83
68
  exportFormat,
84
69
  tokens,
85
- datasetId,
86
70
  };
87
71
  const configPath = path.join(process.cwd(), 'vesper-mcp-config.json');
88
72
  fs.writeFileSync(configPath, JSON.stringify(config, null, 2));