Compare commits

..

2 commits

Author SHA1 Message Date
RingOfStorms (Joshua Bell)
198713d3cf Add Azure GPT-5.2 low/medium/high reasoning aliases to litellm 2026-01-13 09:29:03 -06:00
RingOfStorms (Joshua Bell)
90fcb6c5ed Use latest ref for opencode and update flake.lock 2026-01-13 08:22:52 -06:00
3 changed files with 47 additions and 7 deletions

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: {

13
hosts/lio/flake.lock generated
View file

@ -315,11 +315,11 @@
}, },
"nixpkgs_4": { "nixpkgs_4": {
"locked": { "locked": {
"lastModified": 1767364772, "lastModified": 1767273430,
"narHash": "sha256-fFUnEYMla8b7UKjijLnMe+oVFOz6HjijGGNS1l7dYaQ=", "narHash": "sha256-kDpoFwQ8GLrPiS3KL+sAwreXrph2KhdXuJzo5+vSLoo=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "16c7794d0a28b5a37904d55bcca36003b9109aaa", "rev": "76eec3925eb9bbe193934987d3285473dbcfad50",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -1230,15 +1230,16 @@
"nixpkgs": "nixpkgs_4" "nixpkgs": "nixpkgs_4"
}, },
"locked": { "locked": {
"lastModified": 1767994684, "lastModified": 1767388146,
"narHash": "sha256-UIijTI9ndnvhRC4tJDiSc19iMxeZZbDjkYTnfCbJpV8=", "narHash": "sha256-E4Zce3466wABErQl0wMm+09BbH06FFShUCdJGcSqmQk=",
"owner": "sst", "owner": "sst",
"repo": "opencode", "repo": "opencode",
"rev": "563b4c33f2bace782403de88e60de4f9167a3c93", "rev": "0cf0294787322664c6d668fa5ab0a9ce26796f78",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "sst", "owner": "sst",
"ref": "latest",
"repo": "opencode", "repo": "opencode",
"type": "github" "type": "github"
} }

View file

@ -19,7 +19,7 @@
# de_plasma.url = "path:../../flakes/de_plasma"; # de_plasma.url = "path:../../flakes/de_plasma";
de_plasma.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/de_plasma"; de_plasma.url = "git+https://git.joshuabell.xyz/ringofstorms/dotfiles?dir=flakes/de_plasma";
opencode.url = "github:sst/opencode"; opencode.url = "github:sst/opencode?ref=latest";
ros_neovim.url = "git+https://git.joshuabell.xyz/ringofstorms/nvim"; ros_neovim.url = "git+https://git.joshuabell.xyz/ringofstorms/nvim";
}; };