Skip to content

Commit 679b408

Browse files
committed
feat: Refactor model references and update installation scripts for API key setup
1 parent ff34540 commit 679b408

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

image-gen/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ compatibility: Requires .NET 8.0 runtime and at least one of GEMINI_API_KEY, OPE
99

1010
Generate images from text prompts or edit existing images using Gemini, OpenAI, BFL (FLUX), or Poe image models.
1111

12-
For detailed model information, see [MODELS.md](MODELS.md) or run `image-gen --list-models -p <provider>`.
12+
For detailed model information, see [MODELS.md](references/MODELS.md) or run `image-gen --list-models -p <provider>`.
1313

1414
## When to Use This Skill
1515

File renamed without changes.

image-gen/scripts/install.ps1

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ else {
3535
Write-Host ""
3636
Write-Host "Installation complete. Run 'image-gen --help' to get started."
3737
Write-Host ""
38-
Write-Host "Set your API key:"
39-
Write-Host " `$env:GEMINI_API_KEY = 'your-key' # for Gemini"
38+
Write-Host "Set at least one API key:"
39+
Write-Host " `$env:GEMINI_API_KEY = 'your-key' # for Gemini (default)"
4040
Write-Host " `$env:OPENAI_API_KEY = 'your-key' # for OpenAI"
41+
Write-Host " `$env:BFL_API_KEY = 'your-key' # for BFL (FLUX)"
42+
Write-Host " `$env:POE_API_KEY = 'your-key' # for Poe"

image-gen/scripts/install.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ fi
3232

3333
echo "Installation complete. Run 'image-gen --help' to get started."
3434
echo ""
35-
echo "Set your API key:"
36-
echo " export GEMINI_API_KEY=your-key # for Gemini"
35+
echo "Set at least one API key:"
36+
echo " export GEMINI_API_KEY=your-key # for Gemini (default)"
3737
echo " export OPENAI_API_KEY=your-key # for OpenAI"
38+
echo " export BFL_API_KEY=your-key # for BFL (FLUX)"
39+
echo " export POE_API_KEY=your-key # for Poe"

0 commit comments

Comments
 (0)