@j-o-r/hello-dave 0.1.0 → 0.1.1

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.
@@ -2,8 +2,6 @@ import * as image from './image.js';
2
2
  import imageToolset from './ImageToolset.js'
3
3
 
4
4
  export default {
5
- music,
6
- musicToolset,
7
5
  image,
8
6
  imageToolset
9
7
  }
package/lib/index.js CHANGED
@@ -4,7 +4,7 @@ import {request as claude} from './API/anthropic.com/text.js';
4
4
  import {request as brave} from './API/brave.com/search.js';
5
5
  import minimax from './API/minimax/index.js';
6
6
  import stability from './API/stability.ai/index.js';
7
- import xai from './API/x.ai/index.js';
7
+ import xaitools from './API/x.ai/index.js';
8
8
  import { env, GLOBAL } from './fafs.js';
9
9
  import ToolSet from './ToolSet.js';
10
10
  import AgentServer from './AgentServer.js';
@@ -27,7 +27,7 @@ const API = {
27
27
  },
28
28
  minimax,
29
29
  stability,
30
- xai
30
+ xaitools
31
31
  }
32
32
  export {
33
33
  AgentManager,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@j-o-r/hello-dave",
3
3
  "type": "module",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "description": "ESM toolkit for building AI agents, CLI xai coding agent and unified access to Grok (XAI), OpenAI, and Anthropic endpoints, music, image and video creation toolsets from minimax, stability and x.ai.",
6
6
  "main": "./lib/index.js",
7
7
  "types": "./types/index.d.ts",
@@ -1,6 +1,4 @@
1
1
  declare namespace _default {
2
- export let music: any;
3
- export let musicToolset: any;
4
2
  export { image };
5
3
  export { imageToolset };
6
4
  }
package/types/index.d.ts CHANGED
@@ -16,7 +16,7 @@ export namespace API {
16
16
  }
17
17
  export { minimax };
18
18
  export { stability };
19
- export { xai };
19
+ export { xaitools };
20
20
  }
21
21
  import Cli from './Cli.js';
22
22
  import { env } from './fafs.js';
@@ -29,4 +29,5 @@ import { request as claude } from './API/anthropic.com/text.js';
29
29
  import { request as brave } from './API/brave.com/search.js';
30
30
  import minimax from './API/minimax/index.js';
31
31
  import stability from './API/stability.ai/index.js';
32
+ import xaitools from './API/x.ai/index.js';
32
33
  export { AgentManager, AgentServer, AgentClient, Prompt, ToolSet, Session, Cli, env, GLOBAL, wsCli, wsIO };