Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
Jicheng Lu committed Nov 21, 2024
1 parent f563594 commit 64a828f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/routes/page/agent/[agentId]/agent-llm-config.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,14 @@
Maximum recursive depth
</label>
<div class="col-md-9">
<Input type="number" min={lowerLimit} max={upperLimit} style="text-align: center;" value={config.max_recursion_depth} on:change={e => changeMaxRecursiveDepth(e)} />
<Input
style="text-align: center;"
type="number"
min={lowerLimit}
max={upperLimit}
value={config.max_recursion_depth}
on:change={e => changeMaxRecursiveDepth(e)}
/>
</div>
</div>
</CardBody>
Expand Down

0 comments on commit 64a828f

Please sign in to comment.