deepcode-ai 1.2.3 → 1.2.4

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 CHANGED
@@ -3216,13 +3216,13 @@ function classifyUserIntent(input, mode, policy) {
3216
3216
  if (isDirectUtilityRequest(input, policy)) {
3217
3217
  return { kind: "direct_utility" };
3218
3218
  }
3219
- if (mode === "build" && policy.mode === "always-tools") {
3220
- return { kind: "forced_tool_task" };
3221
- }
3222
3219
  const localConversation = classifyLocalConversation(input, policy);
3223
3220
  if (localConversation) {
3224
3221
  return localConversation;
3225
3222
  }
3223
+ if (mode === "build" && policy.mode === "always-tools") {
3224
+ return { kind: "forced_tool_task" };
3225
+ }
3226
3226
  if (mode === "build" && isSimpleDirectCommand(input)) {
3227
3227
  return { kind: "simple_task" };
3228
3228
  }
@@ -28588,7 +28588,7 @@ function parseVersion2(version) {
28588
28588
  if (!match) return null;
28589
28589
  return [Number(match[1]), Number(match[2]), Number(match[3])];
28590
28590
  }
28591
- var VERSION = "1.2.3".length > 0 ? "1.2.3" : "0.0.0-dev";
28591
+ var VERSION = "1.2.4".length > 0 ? "1.2.4" : "0.0.0-dev";
28592
28592
  var updateCommand = {
28593
28593
  name: "update",
28594
28594
  description: "Check published DeepCode versions",