nixos-config/modules/home/opencode/juspay/default.nix
Sridhar Ratnakumar f13b2406c6
Add opencode home-manager module for zest and pureintent (#103)
* Add opencode home-manager module for zest and pureintent

* Move claude-code Juspay config to separate module

* Add JUSPAY_API_KEY export for opencode
2026-03-11 13:56:30 -04:00

13 lines
239 B
Nix

let
models = import ./models.nix;
in
{
npm = "@ai-sdk/openai-compatible";
name = "Juspay";
options = {
baseURL = "https://grid.ai.juspay.net";
apiKey = "{env:JUSPAY_API_KEY}";
timeout = 600000;
};
inherit models;
}