feat: Switch to openai:gpt-4o by default

This commit is contained in:
uttarayan21
2024-11-26 16:50:34 +05:30
parent 8c1e1a47d3
commit ed9dceb172
2 changed files with 17 additions and 3 deletions

View File

@@ -356,8 +356,22 @@ in {
}
];
}
{
type = "openai";
name = "openai";
api_base = "https://api.openai.com/v1";
api_key_cmd = "op item get 'OpenAI API Token' --fields label='api key' --reveal";
models = [
{
name = "gpt-3.5-turbo";
}
{
name = "gpt-4o";
}
];
}
];
model = "llama:qwen_2_5_1";
model = "openai:gpt-4o";
};
};
};