tweak: disable 4o-mini and mistral in comment writer

This commit is contained in:
KernelDeimos
2024-12-02 12:18:46 -05:00
parent b40d4534a7
commit 614f065e17

View File

@@ -23,10 +23,6 @@ const FILE_EXCLUDES = [
];
const models_to_try = [
{
service: 'openai-completion',
model: 'gpt-4o-mini',
},
{
service: 'openai-completion',
model: 'gpt-4o',
@@ -37,15 +33,22 @@ const models_to_try = [
{
service: 'xai',
},
// llama broke code - that's a "one strike you're out" situation
// === Models that didn't work for this ===
// Sometimes outputs source lines despite "no surrounding text" instruction
// {
// service: 'openai-completion',
// model: 'gpt-4o-mini',
// },
// Was the first to break a source file
// {
// service: 'together-ai',
// model: 'meta-llama/Meta-Llama-3-70B-Instruct-Turbo',
// },
{
service: 'mistral',
model: 'mistral-large-latest',
}
// Occasionally fails spectacularly
// {
// service: 'mistral',
// model: 'mistral-large-latest',
// }
];