@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.
- package/lib/API/x.ai/index.js +0 -2
- package/lib/index.js +2 -2
- package/package.json +1 -1
- package/types/API/x.ai/index.d.ts +0 -2
- package/types/index.d.ts +2 -1
package/lib/API/x.ai/index.js
CHANGED
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
|
|
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
|
-
|
|
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.
|
|
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",
|
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 {
|
|
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 };
|