Skip to content

Instantly share code, notes, and snippets.

View jaksa-v's full-sized avatar

Jaksa Vlahovic jaksa-v

View GitHub Profile
@jaksa-v
jaksa-v / claude-provider
Created January 3, 2026 09:57
claude-provider - Switch between Claude API providers (glm/minimax/vanilla)
#!/usr/bin/env bash
set -euo pipefail
cleanup() {
rm -f "${tmp:-}"
}
trap cleanup EXIT INT TERM
provider="${1:-}"
if [[ -z "$provider" ]]; then