Is it possible to add through stages a no reasoning function?
Like this:
const reasoningEnabled = localStorage.getItem("reasoning_enabled") === "true";
const reasoningVisible = localStorage.getItem("reasoning_visible") === "true";
// Part2:
),
reasoning: {
"enabled": reasoningEnabled,
"effort": "low",
"exclude": !reasoningEnabled
}
};
I really would like to have an option to disable reasoning, maybe we can do it with a stage?
Is it possible to add through stages a no reasoning function?
Like this:
I really would like to have an option to disable reasoning, maybe we can do it with a stage?