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.
1 parent f563594 commit 64a828fCopy full SHA for 64a828f
src/routes/page/agent/[agentId]/agent-llm-config.svelte
@@ -110,7 +110,14 @@
110
Maximum recursive depth
111
</label>
112
<div class="col-md-9">
113
- <Input type="number" min={lowerLimit} max={upperLimit} style="text-align: center;" value={config.max_recursion_depth} on:change={e => changeMaxRecursiveDepth(e)} />
+ <Input
114
+ style="text-align: center;"
115
+ type="number"
116
+ min={lowerLimit}
117
+ max={upperLimit}
118
+ value={config.max_recursion_depth}
119
+ on:change={e => changeMaxRecursiveDepth(e)}
120
+ />
121
</div>
122
123
</CardBody>
0 commit comments