Add Azure GPT-5.2 low/medium/high reasoning aliases to litellm

This commit is contained in:
RingOfStorms (Joshua Bell) 2026-01-13 09:29:03 -06:00
parent 90fcb6c5ed
commit 198713d3cf

View file

@ -122,6 +122,45 @@ in
# "temperature": 0.7 # "temperature": 0.7
# }' | jq # }' | jq
) )
# Azure reasoning aliases
++ [
{
model_name = "azure-gpt-5.2-low";
litellm_params = {
model = "azure/gpt-5.2-2025-12-11";
api_base = "http://100.64.0.8:9010/azure";
api_version = "2025-04-01-preview";
api_key = "na";
extra_body = {
reasoning_effort = "low";
};
};
}
{
model_name = "azure-gpt-5.2-medium";
litellm_params = {
model = "azure/gpt-5.2-2025-12-11";
api_base = "http://100.64.0.8:9010/azure";
api_version = "2025-04-01-preview";
api_key = "na";
extra_body = {
reasoning_effort = "medium";
};
};
}
{
model_name = "azure-gpt-5.2-high";
litellm_params = {
model = "azure/gpt-5.2-2025-12-11";
api_base = "http://100.64.0.8:9010/azure";
api_version = "2025-04-01-preview";
api_key = "na";
extra_body = {
reasoning_effort = "high";
};
};
}
]
# 宙 Proxy # 宙 Proxy
++ (builtins.map ++ (builtins.map
(m: { (m: {