@swifty.js/swifty 0.0.21 → 0.0.22
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/dist/{agent-ZCMBUWLZ.js → agent-5T7KNC7V.js} +1 -1
- package/dist/{anthropic-4ZVG7AMA.js → anthropic-P2R4GW6F.js} +1 -1
- package/dist/{chunk-Y5WGBAGP.js → chunk-HJIGA37J.js} +1 -1
- package/dist/{chunk-DDBH5AEN.js → chunk-L73IHJF4.js} +53 -53
- package/dist/{chunk-S6ZADC7C.js → chunk-NEAR6YPZ.js} +1 -1
- package/dist/{chunk-MUPVOATV.js → chunk-NLNH3IRT.js} +1 -1
- package/dist/{chunk-6E6UA7MT.js → chunk-YQQVB6VB.js} +9 -8
- package/dist/lib/agent-2AGRYN3R.js +9 -0
- package/dist/lib/anthropic-GFWP3ORB.js +22 -0
- package/dist/lib/bwrap-QRGPUP4J.js +6 -0
- package/dist/lib/checker-IIXJXQCB.js +19 -0
- package/dist/lib/chunk-6GOWRPYS.js +339 -0
- package/dist/lib/chunk-7URDLWQN.js +426 -0
- package/dist/lib/chunk-C7IHCJZ3.js +849 -0
- package/dist/lib/chunk-EJLGB2EJ.js +377 -0
- package/dist/lib/chunk-GHF2PSEW.js +8 -0
- package/dist/lib/chunk-GNBXECZN.js +243 -0
- package/dist/lib/chunk-HK2Z6WP4.js +223 -0
- package/dist/lib/chunk-LUEP4JMF.js +549 -0
- package/dist/lib/chunk-ORSYNBMM.js +38 -0
- package/dist/lib/chunk-RR2CZ6CY.js +598 -0
- package/dist/lib/chunk-UHVO63Y7.js +1246 -0
- package/dist/lib/chunk-UMFNTXKA.js +88 -0
- package/dist/lib/chunk-VUD72RTY.js +39 -0
- package/dist/lib/glob.wasm +0 -0
- package/dist/lib/index.d.ts +5350 -0
- package/dist/lib/index.js +12002 -0
- package/dist/lib/openai-HXRMPNB7.js +15 -0
- package/dist/lib/seatbelt-FT5IY73W.js +6 -0
- package/dist/lib/tool-filter-VF7TZRE5.js +19 -0
- package/dist/main.js +225 -225
- package/dist/{openai-HXD52MZB.js → openai-TVUUHRG7.js} +1 -1
- package/dist/{server-VMHWEO2Y.js → server-ZTLHJWEQ.js} +14 -14
- package/package.json +14 -2
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import {
|
|
2
|
+
OpenAIClient,
|
|
3
|
+
OpenAICompatClient,
|
|
4
|
+
buildChatCompletionMessages,
|
|
5
|
+
buildOpenAIInput
|
|
6
|
+
} from "./chunk-RR2CZ6CY.js";
|
|
7
|
+
import "./chunk-6GOWRPYS.js";
|
|
8
|
+
import "./chunk-UMFNTXKA.js";
|
|
9
|
+
import "./chunk-EJLGB2EJ.js";
|
|
10
|
+
export {
|
|
11
|
+
OpenAIClient,
|
|
12
|
+
OpenAICompatClient,
|
|
13
|
+
buildChatCompletionMessages,
|
|
14
|
+
buildOpenAIInput
|
|
15
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ASYNC_AGENT_ALLOWED_TOOLS,
|
|
3
|
+
CUSTOM_AGENT_DISALLOWED_TOOLS,
|
|
4
|
+
FORK_QUERY_SOURCE,
|
|
5
|
+
SUBAGENT_DISALLOWED_TOOLS,
|
|
6
|
+
TEAMMATE_DISALLOWED_TOOLS,
|
|
7
|
+
cloneRegistryForFork,
|
|
8
|
+
filterToolsForAgent
|
|
9
|
+
} from "./chunk-HK2Z6WP4.js";
|
|
10
|
+
import "./chunk-GHF2PSEW.js";
|
|
11
|
+
export {
|
|
12
|
+
ASYNC_AGENT_ALLOWED_TOOLS,
|
|
13
|
+
CUSTOM_AGENT_DISALLOWED_TOOLS,
|
|
14
|
+
FORK_QUERY_SOURCE,
|
|
15
|
+
SUBAGENT_DISALLOWED_TOOLS,
|
|
16
|
+
TEAMMATE_DISALLOWED_TOOLS,
|
|
17
|
+
cloneRegistryForFork,
|
|
18
|
+
filterToolsForAgent
|
|
19
|
+
};
|