Commit af08b4163c3c
Changed files (2)
pkgs
my
scripts
bin
pkgs/my/scripts/bin/pir
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+# Pi coding agent with Vertex AI provider
+# Usage: pir [args...]
+# Uses google-vertex provider with gemini-2.5-pro (allowed by org policy)
+
+export GOOGLE_CLOUD_PROJECT=itpc-gcp-pnd-pe-eng-claude
+export GOOGLE_CLOUD_LOCATION=us-central1
+
+exec pi --provider google-vertex --model gemini-2.5-pro "$@"
pkgs/my/scripts/default.nix
@@ -5,7 +5,7 @@
stdenv.mkDerivation {
pname = "vde-scripts";
- version = "0.4";
+ version = "0.5";
src = ./.;