We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d65547d commit a0dc1c8Copy full SHA for a0dc1c8
1 file changed
src/engine/anthropic.ts
@@ -41,7 +41,7 @@ export class AnthropicEngine implements AiEngine {
41
};
42
43
// add top_p for non-4.5 models
44
- if (!params.model.includes('-4-5')) {
+ if (!params.model.includes('-4-5') || !params.model.includes('claude')) {
45
params.top_p = 0.1;
46
}
47
0 commit comments