@kud/ai-conventional-commit-cli 0.7.1 → 0.7.2
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -278,7 +278,7 @@ var OpenCodeProvider = class {
|
|
|
278
278
|
async chat(messages, _opts) {
|
|
279
279
|
const debug = process.env.AICC_DEBUG === "true";
|
|
280
280
|
const mockMode = process.env.AICC_DEBUG_PROVIDER === "mock";
|
|
281
|
-
const timeoutMs = parseInt(process.env.AICC_MODEL_TIMEOUT_MS || "
|
|
281
|
+
const timeoutMs = parseInt(process.env.AICC_MODEL_TIMEOUT_MS || "120000", 10);
|
|
282
282
|
const eager = process.env.AICC_EAGER_PARSE !== "false";
|
|
283
283
|
const userAggregate = messages.map((m) => `${m.role.toUpperCase()}: ${m.content}`).join("\n\n");
|
|
284
284
|
const command = `Generate high-quality commit message candidates based on the staged git diff.`;
|
|
@@ -1115,7 +1115,7 @@ async function runRefine(config, options) {
|
|
|
1115
1115
|
// package.json
|
|
1116
1116
|
var package_default = {
|
|
1117
1117
|
name: "@kud/ai-conventional-commit-cli",
|
|
1118
|
-
version: "0.7.
|
|
1118
|
+
version: "0.7.2",
|
|
1119
1119
|
type: "module",
|
|
1120
1120
|
description: "Opinionated, style-aware AI assistant for crafting and splitting git commits (opencode-based, provider-agnostic).",
|
|
1121
1121
|
bin: {
|
package/package.json
CHANGED