openfox 1.6.0 → 1.6.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/dist/{chunk-TKWJ665A.js → chunk-GX4FO6UV.js} +2 -2
- package/dist/{chunk-WZJLCOV3.js → chunk-UMRXS66I.js} +6 -1
- package/dist/cli/dev.js +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/package.json +6 -2
- package/dist/{serve-SDBFDRNJ.js → serve-CO6WHGYG.js} +3 -7
- package/dist/server/index.js +1 -1
- package/dist/web/assets/{index-JG-uVLoP.js → index-BgQD0NJB.js} +7 -7
- package/dist/web/index.html +1 -1
- package/dist/web/sw.js +1 -1
- package/package.json +6 -2
|
@@ -154,7 +154,7 @@ async function runCli(options) {
|
|
|
154
154
|
if (!configExists) {
|
|
155
155
|
await runNetworkSetup(mode);
|
|
156
156
|
}
|
|
157
|
-
const { runServe } = await import("./serve-
|
|
157
|
+
const { runServe } = await import("./serve-CO6WHGYG.js");
|
|
158
158
|
await runServe({
|
|
159
159
|
mode,
|
|
160
160
|
port: values.port ? parseInt(values.port) : void 0,
|
|
@@ -167,4 +167,4 @@ async function runCli(options) {
|
|
|
167
167
|
export {
|
|
168
168
|
runCli
|
|
169
169
|
};
|
|
170
|
-
//# sourceMappingURL=chunk-
|
|
170
|
+
//# sourceMappingURL=chunk-GX4FO6UV.js.map
|
|
@@ -5567,6 +5567,9 @@ function createTerminalRoutes() {
|
|
|
5567
5567
|
return router;
|
|
5568
5568
|
}
|
|
5569
5569
|
|
|
5570
|
+
// src/constants.ts
|
|
5571
|
+
var VERSION = "1.6.1";
|
|
5572
|
+
|
|
5570
5573
|
// src/server/index.ts
|
|
5571
5574
|
var __dirname2 = dirname5(fileURLToPath4(import.meta.url));
|
|
5572
5575
|
async function createServerHandle(config) {
|
|
@@ -6006,6 +6009,7 @@ async function createServerHandle(config) {
|
|
|
6006
6009
|
} catch {
|
|
6007
6010
|
}
|
|
6008
6011
|
res.json({
|
|
6012
|
+
version: VERSION,
|
|
6009
6013
|
model: llmClient.getModel(),
|
|
6010
6014
|
maxContext: providerManager.getCurrentModelContext(),
|
|
6011
6015
|
llmUrl: activeProvider?.url ?? config.llm.baseUrl,
|
|
@@ -6449,7 +6453,8 @@ function basename2(path) {
|
|
|
6449
6453
|
}
|
|
6450
6454
|
|
|
6451
6455
|
export {
|
|
6456
|
+
VERSION,
|
|
6452
6457
|
createServerHandle,
|
|
6453
6458
|
createServer
|
|
6454
6459
|
};
|
|
6455
|
-
//# sourceMappingURL=chunk-
|
|
6460
|
+
//# sourceMappingURL=chunk-UMRXS66I.js.map
|
package/dist/cli/dev.js
CHANGED
package/dist/cli/index.js
CHANGED
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openfox",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "Local-LLM-first agentic coding assistant",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -123,5 +123,9 @@
|
|
|
123
123
|
"engines": {
|
|
124
124
|
"node": ">=24.0.0"
|
|
125
125
|
},
|
|
126
|
-
"license": "MIT"
|
|
126
|
+
"license": "MIT",
|
|
127
|
+
"repository": {
|
|
128
|
+
"type": "git",
|
|
129
|
+
"url": "git@github.com:co-l/openfox.git"
|
|
130
|
+
}
|
|
127
131
|
}
|
|
@@ -4,8 +4,9 @@ import {
|
|
|
4
4
|
loadGlobalConfig
|
|
5
5
|
} from "./chunk-ICPQDI4L.js";
|
|
6
6
|
import {
|
|
7
|
+
VERSION,
|
|
7
8
|
createServer
|
|
8
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-UMRXS66I.js";
|
|
9
10
|
import "./chunk-QDEKU5RL.js";
|
|
10
11
|
import "./chunk-S73ATBSR.js";
|
|
11
12
|
import "./chunk-GBBTJ6ND.js";
|
|
@@ -39,11 +40,6 @@ import {
|
|
|
39
40
|
// src/server/utils/network.ts
|
|
40
41
|
import os from "os";
|
|
41
42
|
import { statSync } from "fs";
|
|
42
|
-
|
|
43
|
-
// src/constants.ts
|
|
44
|
-
var VERSION = "1.6.0";
|
|
45
|
-
|
|
46
|
-
// src/server/utils/network.ts
|
|
47
43
|
function getNetworkInterfaces() {
|
|
48
44
|
const interfaces = os.networkInterfaces();
|
|
49
45
|
const result = [];
|
|
@@ -192,4 +188,4 @@ async function runServe(options) {
|
|
|
192
188
|
export {
|
|
193
189
|
runServe
|
|
194
190
|
};
|
|
195
|
-
//# sourceMappingURL=serve-
|
|
191
|
+
//# sourceMappingURL=serve-CO6WHGYG.js.map
|