@swifty.js/swifty 0.0.29 → 0.0.31
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/README.md +25 -11
- package/dist/agent-O6C4FCQY.js +4 -0
- package/dist/anthropic-CFM2DXMB.js +4 -0
- package/dist/checker-A6PGACKZ.js +4 -0
- package/dist/chunk-4ABFUBO4.js +601 -0
- package/dist/{chunk-K5ZK27BX.js → chunk-AGJYBJ5M.js} +1 -1
- package/dist/chunk-AQ3A5CF4.js +5 -0
- package/dist/chunk-MVVSONAE.js +4 -0
- package/dist/chunk-OQCEP2F5.js +4 -0
- package/dist/{chunk-QFSCPD63.js → chunk-TCQ4EB4G.js} +1 -1
- package/dist/chunk-Y2UUXOQA.js +4 -0
- package/dist/chunk-YAXZ2OUD.js +150 -0
- package/dist/lib/agent-YRTROHXU.js +10 -0
- package/dist/lib/{anthropic-KWO3KLNV.js → anthropic-R6DMXE7U.js} +4 -5
- package/dist/lib/{checker-AXHPKVBY.js → checker-M7RKMKJQ.js} +2 -3
- package/dist/lib/{chunk-KZSBR4FO.js → chunk-4MDCRPVV.js} +76 -40
- package/dist/lib/{chunk-DJ6AILPN.js → chunk-A4MXZA5Q.js} +209 -51
- package/dist/lib/{chunk-2IVEVG5N.js → chunk-EWE5IWZE.js} +28 -25
- package/dist/lib/{chunk-KG4MJGKQ.js → chunk-FZ4Y6MBN.js} +1 -4
- package/dist/lib/{chunk-GCY44T7S.js → chunk-J6AV7SIF.js} +221 -351
- package/dist/lib/{chunk-3FBS5NB7.js → chunk-OEPCNATU.js} +217 -41
- package/dist/lib/{chunk-Z4CYHTII.js → chunk-OQIQOU5S.js} +85 -26
- package/dist/lib/{chunk-PIL7M52F.js → chunk-XT67KGWE.js} +16 -3
- package/dist/lib/index.d.ts +1212 -932
- package/dist/lib/index.js +2836 -1611
- package/dist/lib/{openai-PBF7EWNJ.js → openai-5N42ZYIJ.js} +2 -2
- package/dist/lib/{tool-filter-R6HDDJHE.js → tool-filter-XG2GXFVN.js} +3 -2
- package/dist/main.js +197 -189
- package/dist/openai-NQYARTT6.js +34 -0
- package/dist/{server-G23HCFLI.js → server-BNT2IIKB.js} +18 -18
- package/dist/tool-filter-5NDJMSTD.js +4 -0
- package/package.json +4 -3
- package/dist/agent-YR6YK26C.js +0 -4
- package/dist/anthropic-5GRR5JCT.js +0 -4
- package/dist/checker-N5TIJEN5.js +0 -4
- package/dist/chunk-D34FUVGU.js +0 -4
- package/dist/chunk-E55KH72M.js +0 -4
- package/dist/chunk-LIMEBKCY.js +0 -408
- package/dist/chunk-POHIQUFP.js +0 -301
- package/dist/chunk-QCKJLO6X.js +0 -4
- package/dist/chunk-TMEX7RFA.js +0 -4
- package/dist/chunk-Y6SQB5FG.js +0 -4
- package/dist/glob.wasm +0 -0
- package/dist/lib/agent-5WEKVRTD.js +0 -11
- package/dist/lib/chunk-GHF2PSEW.js +0 -8
- package/dist/lib/glob.wasm +0 -0
- package/dist/openai-QQ2K7GPF.js +0 -34
- package/dist/tool-filter-VBP6WOGO.js +0 -4
|
@@ -3,8 +3,8 @@ import {
|
|
|
3
3
|
OpenAICompatClient,
|
|
4
4
|
buildChatCompletionMessages,
|
|
5
5
|
buildOpenAIInput
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-OEPCNATU.js";
|
|
7
|
+
import "./chunk-OQIQOU5S.js";
|
|
8
8
|
import "./chunk-EY7HE52Q.js";
|
|
9
9
|
export {
|
|
10
10
|
OpenAIClient,
|
|
@@ -2,16 +2,17 @@ import {
|
|
|
2
2
|
ASYNC_AGENT_ALLOWED_TOOLS,
|
|
3
3
|
CUSTOM_AGENT_DISALLOWED_TOOLS,
|
|
4
4
|
FORK_QUERY_SOURCE,
|
|
5
|
+
MAIN_AGENT_ONLY_TOOLS,
|
|
5
6
|
SUBAGENT_DISALLOWED_TOOLS,
|
|
6
7
|
TEAMMATE_DISALLOWED_TOOLS,
|
|
7
8
|
cloneRegistryForFork,
|
|
8
9
|
filterToolsForAgent
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-GHF2PSEW.js";
|
|
10
|
+
} from "./chunk-EWE5IWZE.js";
|
|
11
11
|
export {
|
|
12
12
|
ASYNC_AGENT_ALLOWED_TOOLS,
|
|
13
13
|
CUSTOM_AGENT_DISALLOWED_TOOLS,
|
|
14
14
|
FORK_QUERY_SOURCE,
|
|
15
|
+
MAIN_AGENT_ONLY_TOOLS,
|
|
15
16
|
SUBAGENT_DISALLOWED_TOOLS,
|
|
16
17
|
TEAMMATE_DISALLOWED_TOOLS,
|
|
17
18
|
cloneRegistryForFork,
|