mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-06-19 12:45:34 +00:00
11 lines
390 B
Fish
11 lines
390 B
Fish
function aikeys -d 'Set AI API keys' -a service
|
|
switch $service
|
|
case gemini
|
|
echo "set -lx GEMINI_API_KEY (kp Keys/google-aistudio-key -a Password)"
|
|
case openai
|
|
echo "set -lx OPENAI_API_KEY (kp Keys/openai-general -a Password)"
|
|
case anthro
|
|
echo "set -lx ANTHROPIC_API_KEY (kp Keys/google-aistudio-key -a Password)"
|
|
end
|
|
end
|