We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a1a675e + feb3b42 commit 1b915b1Copy full SHA for 1b915b1
src/routes/page/agent/[agentId]/agent-components/agent-llm-config.svelte
@@ -25,7 +25,6 @@
25
};
26
27
const recursiveDepthLowerLimit = 1;
28
- const recursiveDepthUpperLimit = 10;
29
30
let config = agent.llm_config;
31
@@ -84,8 +83,6 @@
84
83
85
if (value < recursiveDepthLowerLimit) {
86
value = recursiveDepthLowerLimit;
87
- } else if (value > recursiveDepthUpperLimit) {
88
- value = recursiveDepthUpperLimit;
89
}
90
91
config.max_recursion_depth = value;
@@ -153,7 +150,6 @@
153
150
style="text-align: center;"
154
151
type="number"
155
152
min={recursiveDepthLowerLimit}
156
- max={recursiveDepthUpperLimit}
157
value={config.max_recursion_depth}
158
on:keydown={e => validateIntegerInput(e)}
159
on:change={e => changeMaxRecursiveDepth(e)}
0 commit comments