cc-claw 0.14.2 → 0.14.3
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/cli.js +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -72,7 +72,7 @@ var VERSION;
|
|
|
72
72
|
var init_version = __esm({
|
|
73
73
|
"src/version.ts"() {
|
|
74
74
|
"use strict";
|
|
75
|
-
VERSION = true ? "0.14.
|
|
75
|
+
VERSION = true ? "0.14.3" : (() => {
|
|
76
76
|
try {
|
|
77
77
|
return JSON.parse(readFileSync(join2(process.cwd(), "package.json"), "utf-8")).version ?? "unknown";
|
|
78
78
|
} catch {
|
|
@@ -10000,7 +10000,7 @@ function spawnQuery(adapter, config2, model2, cancelState, thinkingLevel, timeou
|
|
|
10000
10000
|
proc.stderr?.on("data", (chunk) => stderrChunks.push(chunk));
|
|
10001
10001
|
const rl2 = createInterface4({ input: proc.stdout });
|
|
10002
10002
|
let firstLine = true;
|
|
10003
|
-
const frTimeoutMs = opts?.firstResponseTimeoutMs ?? FIRST_RESPONSE_TIMEOUT_MS;
|
|
10003
|
+
const frTimeoutMs = adapter.id === "gemini" ? opts?.firstResponseTimeoutMs ?? FIRST_RESPONSE_TIMEOUT_MS : 0;
|
|
10004
10004
|
let firstResponseTimer;
|
|
10005
10005
|
let gotModelContent = false;
|
|
10006
10006
|
if (frTimeoutMs > 0) {
|
package/package.json
CHANGED