@lazyingart/agintiflow 0.20.23 → 0.20.24
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/package.json +1 -1
- package/src/task-profiles.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lazyingart/agintiflow",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.24",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "AgInTiFlow is a web-first coding agent and CLI with DeepSeek routing, sandboxed tools, model providers, canvas artifacts, and optional wrappers.",
|
|
6
6
|
"license": "Apache-2.0",
|
package/src/task-profiles.js
CHANGED
|
@@ -130,7 +130,7 @@ export function getTaskProfile(value = "auto") {
|
|
|
130
130
|
export function defaultMaxStepsForProfile(value = "auto") {
|
|
131
131
|
const profile = normalizeTaskProfile(value);
|
|
132
132
|
if (profile === "large-codebase") return 36;
|
|
133
|
-
if (profile === "android") return
|
|
133
|
+
if (profile === "android") return 60;
|
|
134
134
|
if (profile === "latex") return 30;
|
|
135
135
|
return 24;
|
|
136
136
|
}
|