Add Azure GPT-5.2 low/medium/high reasoning aliases to litellm
This commit is contained in:
parent
90fcb6c5ed
commit
198713d3cf
1 changed files with 39 additions and 0 deletions
|
|
@ -122,6 +122,45 @@ in
|
|||
# "temperature": 0.7
|
||||
# }' | 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
|
||||
++ (builtins.map
|
||||
(m: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue