@aethermind/setup 0.1.2 → 0.1.3

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/src/detect.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aethermind/setup",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "CLI setup tool for Aethermind AgentOS — configures your project with one command",
5
5
  "bin": {
6
6
  "aethermind-setup": "./bin/setup.js"
package/src/detect.js CHANGED
@@ -31,6 +31,7 @@ const AI_SDKS = [
31
31
  { name: 'openai', label: 'openai' },
32
32
  { name: '@anthropic-ai/sdk', label: '@anthropic-ai/sdk' },
33
33
  { name: '@google/generative-ai', label: '@google/generative-ai' },
34
+ { name: 'ollama', label: 'ollama' },
34
35
  ];
35
36
 
36
37
  function detectInstalledSDKs(cwd) {
@@ -48,7 +49,7 @@ function detectInstalledSDKs(cwd) {
48
49
  if (found.length > 0) {
49
50
  ok(`SDKs detectados: ${found.join(', ')}`);
50
51
  } else {
51
- info('No se detectaron SDKs de IA instalados (openai, anthropic, gemini)');
52
+ info('No se detectaron SDKs de IA instalados (openai, anthropic, gemini, ollama)');
52
53
  }
53
54
  return found;
54
55
  }