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 ea81611 commit 0039bd0Copy full SHA for 0039bd0
src/lib/helpers/enums.js
@@ -188,6 +188,7 @@ const llmModelType = {
188
export const LlmModelType = Object.freeze(llmModelType);
189
190
const reasoningEffortLevel = {
191
+ Minimal: "minimal",
192
Low: "low",
193
Medium: "medium",
194
High: "high"
src/routes/page/agent/[agentId]/agent-components/agent-llm-config.svelte
@@ -183,7 +183,7 @@
183
184
<div class="mb-3 row">
185
<label for="example-text-input" class="col-md-3 col-form-label">
186
- Reasoning level
+ Reasoning effort
187
</label>
<div class="col-md-9">
<Input type="select" value={config.reasoning_effort_level} on:change={e => changeReasoningEffortLevel(e)}>
0 commit comments