You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hey, I just found how to fix this. Edit model works fine again when I disabled reasoning on reasoningable model like gpt5.4. If you have a openai-compatible model, edit your config.yaml like:
name: gpt-5.4-mini
provider: openai
model: gpt-5.4-mini
apiKey: x
apiBase: x
roles:
by reasoning:effort none (follow format above), you can turn off reasoning, which is cleared by OpenAI docs. If you are using another provider, check docs and search how to disable it. After disabling this, the response from model is no longer with thinking process, just the code only like below:
---------Log-from-Continue-Console--------------------------------
{isDark ? (
) : (
)}
);
}
Now the response is very clean, and apply correctly.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
hey, I just found how to fix this. Edit model works fine again when I disabled reasoning on reasoningable model like gpt5.4. If you have a openai-compatible model, edit your config.yaml like:
provider: openai
model: gpt-5.4-mini
apiKey: x
apiBase: x
roles:
requestOptions:
extraBodyProperties:
reasoning:
effort: none
by reasoning:effort none (follow format above), you can turn off reasoning, which is cleared by OpenAI docs. If you are using another provider, check docs and search how to disable it. After disabling this, the response from model is no longer with thinking process, just the code only like below:
---------Log-from-Continue-Console--------------------------------
{isDark ? (
) : (
)}
);
}
Now the response is very clean, and apply correctly.
Beta Was this translation helpful? Give feedback.
All reactions