openfox 2.0.37 → 2.0.39
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-defaults/builder.agent.md +2 -0
- package/dist/agent-defaults/code-reviewer.agent.md +1 -0
- package/dist/agent-defaults/explorer.agent.md +1 -0
- package/dist/agent-defaults/planner.agent.md +1 -0
- package/dist/{chat-handler-HPXOVKUX.js → chat-handler-4YZGM7V7.js} +4 -4
- package/dist/{chunk-PKE4MQWI.js → chunk-4RYP3RBY.js} +6 -6
- package/dist/{chunk-QG2WM7EX.js → chunk-BG5ILIWN.js} +2 -2
- package/dist/{chunk-2G2H4HUO.js → chunk-BMRC6TQ5.js} +369 -35
- package/dist/{chunk-PWY6EBZ6.js → chunk-EZ3BPIUV.js} +9 -2
- package/dist/{chunk-DAC7YKYW.js → chunk-P4SOUTLD.js} +3 -3
- package/dist/{chunk-BJPPDLJX.js → chunk-UR4A2HYT.js} +277 -11
- package/dist/cli/dev.js +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/{config-QI3KOU42.js → config-XOXIIBUY.js} +2 -2
- package/dist/{orchestrator-PTKTND5E.js → orchestrator-7B3XOZ4T.js} +4 -4
- package/dist/package.json +1 -1
- package/dist/{processor-D6HYPRZD.js → processor-FB2I73B3.js} +4 -4
- package/dist/{provider-ZLMMOORK.js → provider-JLLIB72V.js} +3 -3
- package/dist/{serve-NGAWODZ2.js → serve-RZWSK3AA.js} +6 -6
- package/dist/server/index.d.ts +88 -0
- package/dist/server/index.js +5 -5
- package/dist/{server-K2BDDDL4.js → server-YPCAJFOC.js} +5 -5
- package/dist/{tools-JPKBLAQ5.js → tools-ZYUJUI4R.js} +3 -3
- package/package.json +1 -1
|
@@ -5,8 +5,8 @@ import {
|
|
|
5
5
|
} from "./chunk-JGNAYJJZ.js";
|
|
6
6
|
import {
|
|
7
7
|
runChatTurn
|
|
8
|
-
} from "./chunk-
|
|
9
|
-
import "./chunk-
|
|
8
|
+
} from "./chunk-BG5ILIWN.js";
|
|
9
|
+
import "./chunk-UR4A2HYT.js";
|
|
10
10
|
import "./chunk-DL6ZILAF.js";
|
|
11
11
|
import "./chunk-PBGOZMVY.js";
|
|
12
12
|
import "./chunk-VRGRAQDG.js";
|
|
@@ -30,7 +30,7 @@ import "./chunk-Z4FMBCJO.js";
|
|
|
30
30
|
import "./chunk-Z6W4YHJB.js";
|
|
31
31
|
import "./chunk-K44MW7JJ.js";
|
|
32
32
|
import "./chunk-YD6NDTKF.js";
|
|
33
|
-
import "./chunk-
|
|
33
|
+
import "./chunk-EZ3BPIUV.js";
|
|
34
34
|
import "./chunk-CQGTEGKL.js";
|
|
35
35
|
import "./chunk-V4IE7HJY.js";
|
|
36
36
|
|
|
@@ -145,4 +145,4 @@ export {
|
|
|
145
145
|
startChatSession,
|
|
146
146
|
stopSessionExecution
|
|
147
147
|
};
|
|
148
|
-
//# sourceMappingURL=chat-handler-
|
|
148
|
+
//# sourceMappingURL=chat-handler-4YZGM7V7.js.map
|
|
@@ -33,7 +33,7 @@ Options:
|
|
|
33
33
|
}
|
|
34
34
|
async function runNetworkSetup(mode) {
|
|
35
35
|
const { loadAuthConfig, saveAuthConfig, encryptPassword } = await import("./auth-56SIRACI.js");
|
|
36
|
-
const { saveGlobalConfig } = await import("./config-
|
|
36
|
+
const { saveGlobalConfig } = await import("./config-XOXIIBUY.js");
|
|
37
37
|
const { getAuthKeyPath } = await import("./paths-X46PPOI2.js");
|
|
38
38
|
const existingAuth = await loadAuthConfig(mode);
|
|
39
39
|
if (existingAuth) {
|
|
@@ -100,7 +100,7 @@ async function runNetworkSetup(mode) {
|
|
|
100
100
|
console.log("\u2713 Configuration saved!\n");
|
|
101
101
|
}
|
|
102
102
|
async function runConfig(mode) {
|
|
103
|
-
const { loadGlobalConfig, getActiveProvider, getDefaultModel } = await import("./config-
|
|
103
|
+
const { loadGlobalConfig, getActiveProvider, getDefaultModel } = await import("./config-XOXIIBUY.js");
|
|
104
104
|
const { getGlobalConfigPath } = await import("./paths-X46PPOI2.js");
|
|
105
105
|
const config = await loadGlobalConfig(mode);
|
|
106
106
|
const configPath = getGlobalConfigPath(mode);
|
|
@@ -158,7 +158,7 @@ async function runCli(options) {
|
|
|
158
158
|
break;
|
|
159
159
|
}
|
|
160
160
|
case "provider": {
|
|
161
|
-
const { runProviderCommand } = await import("./provider-
|
|
161
|
+
const { runProviderCommand } = await import("./provider-JLLIB72V.js");
|
|
162
162
|
const [, subcommand] = positionals;
|
|
163
163
|
await runProviderCommand(mode, subcommand);
|
|
164
164
|
break;
|
|
@@ -197,12 +197,12 @@ async function runCli(options) {
|
|
|
197
197
|
break;
|
|
198
198
|
}
|
|
199
199
|
default: {
|
|
200
|
-
const { configFileExists } = await import("./config-
|
|
200
|
+
const { configFileExists } = await import("./config-XOXIIBUY.js");
|
|
201
201
|
const configExists = await configFileExists(mode);
|
|
202
202
|
if (!configExists) {
|
|
203
203
|
await runNetworkSetup(mode);
|
|
204
204
|
}
|
|
205
|
-
const { runServe } = await import("./serve-
|
|
205
|
+
const { runServe } = await import("./serve-RZWSK3AA.js");
|
|
206
206
|
const serveOptions = { mode };
|
|
207
207
|
if (values.port) serveOptions.port = parseInt(values.port);
|
|
208
208
|
if (values["no-browser"] === true) serveOptions.openBrowser = false;
|
|
@@ -214,4 +214,4 @@ async function runCli(options) {
|
|
|
214
214
|
export {
|
|
215
215
|
runCli
|
|
216
216
|
};
|
|
217
|
-
//# sourceMappingURL=chunk-
|
|
217
|
+
//# sourceMappingURL=chunk-4RYP3RBY.js.map
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
loadAllAgentsDefault,
|
|
13
13
|
processEventsForConversation,
|
|
14
14
|
runTopLevelAgentLoop
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-UR4A2HYT.js";
|
|
16
16
|
import {
|
|
17
17
|
TurnMetrics,
|
|
18
18
|
WORKFLOW_KICKOFF_PROMPT,
|
|
@@ -310,4 +310,4 @@ export {
|
|
|
310
310
|
runAgentTurn,
|
|
311
311
|
injectWorkflowKickoffIfNeeded
|
|
312
312
|
};
|
|
313
|
-
//# sourceMappingURL=chunk-
|
|
313
|
+
//# sourceMappingURL=chunk-BG5ILIWN.js.map
|