mirror of
https://github.com/srid/nixos-config.git
synced 2026-05-01 19:35:40 +08:00
* Add opencode home-manager module for zest and pureintent * Move claude-code Juspay config to separate module * Add JUSPAY_API_KEY export for opencode
13 lines
239 B
Nix
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;
|
|
}
|