Skip to content

Commit

Permalink
chore: update trending models
Browse files Browse the repository at this point in the history
  • Loading branch information
huuquyet committed Sep 1, 2024
1 parent 1b3b307 commit 548e153
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ This action generate awesome wallpapers using HuggingFace Inference API (serverl
<div align="center">
<img alt="Awesome Wallpapers" src="./assets/wallpaper.jpg">

<!-- START_CAPTION -->
*A celestial display of the Northern Lights dancing above a pristine, snow-dusted pine forest* by [stabilityai/stable-diffusion-3-medium-diffusers](https://hf.co/stabilityai/stable-diffusion-3-medium-diffusers)
<!-- START_CAPTION -->
*A celestial display of the Northern Lights dancing above a pristine, snow-dusted pine forest* by [stabilityai/stable-diffusion-3-medium-diffusers](https://hf.co/stabilityai/stable-diffusion-3-medium-diffusers)
<!-- END_CAPTION -->
</div>

Expand All @@ -27,12 +27,12 @@ Then add to the [secrets for the repository](https://docs.github.com/en/actions/

## List of models

- [black-forest-labs/FLUX.1-dev](https://hf.co/black-forest-labs/FLUX.1-dev)
- [black-forest-labs/FLUX.1-schnell](https://hf.co/black-forest-labs/FLUX.1-schnell)
- [XLabs-AI/flux-ip-adapter](https://hf.co/XLabs-AI/flux-ip-adapter)
- [latent-consistency/lcm-lora-sdxl](https://hf.co/latent-consistency/lcm-lora-sdxl)
- [Shakker-Labs/FLUX.1-dev-ControlNet-Union-Pro](https://hf.co/Shakker-Labs/FLUX.1-dev-ControlNet-Union-Pro)
- [stabilityai/stable-diffusion-3-medium-diffusers](https://hf.co/stabilityai/stable-diffusion-3-medium-diffusers)
- [cagliostrolab/animagine-xl-3.1](https://hf.co/cagliostrolab/animagine-xl-3.1)
- [KBlueLeaf/Kohaku-XL-Zeta](https://hf.co/KBlueLeaf/Kohaku-XL-Zeta)
- [RunDiffusion/Juggernaut-X-v10](https://hf.co/RunDiffusion/Juggernaut-X-v10)
- [Yntec/epiCPhotoGasm](https://hf.co/Yntec/epiCPhotoGasm)
- [SG161222/Realistic_Vision_V6.0_B1_noVAE](https://hf.co/SG161222/Realistic_Vision_V6.0_B1_noVAE)

## Outputs

Expand Down
10 changes: 5 additions & 5 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26839,12 +26839,12 @@ const prompts_namespaceObject = JSON.parse('["A pristine, turquoise glacier lake

// The list of text-to-image models that support inference API
const MODELS = [
'black-forest-labs/FLUX.1-dev',
'black-forest-labs/FLUX.1-schnell',
'XLabs-AI/flux-ip-adapter',
'latent-consistency/lcm-lora-sdxl',
'Shakker-Labs/FLUX.1-dev-ControlNet-Union-Pro',
'stabilityai/stable-diffusion-3-medium-diffusers',
'cagliostrolab/animagine-xl-3.1',
'KBlueLeaf/Kohaku-XL-Zeta',
'SG161222/Realistic_Vision_V6.0_B1_noVAE',
'RunDiffusion/Juggernaut-X-v10',
'Yntec/epiCPhotoGasm',
];
// The patterns to set the caption of image
const START_CAPTION = '<!-- START_CAPTION -->';
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions src/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
API_TOKEN = getenv("HF_API_TOKEN")
# The list of text-to-image models that support inference API
MODELS = [
'black-forest-labs/FLUX.1-dev',
'black-forest-labs/FLUX.1-schnell',
'XLabs-AI/flux-ip-adapter',
'latent-consistency/lcm-lora-sdxl',
'Shakker-Labs/FLUX.1-dev-ControlNet-Union-Pro',
'stabilityai/stable-diffusion-3-medium-diffusers',
'cagliostrolab/animagine-xl-3.1',
'KBlueLeaf/Kohaku-XL-Zeta',
'SG161222/Realistic_Vision_V6.0_B1_noVAE',
'RunDiffusion/Juggernaut-X-v10',
'Yntec/epiCPhotoGasm',
]

random_model = random.choice(MODELS)
Expand Down
10 changes: 5 additions & 5 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import { default as prompts } from '../assets/prompts.json'

// The list of text-to-image models that support inference API
const MODELS: string[] = [
'black-forest-labs/FLUX.1-dev',
'black-forest-labs/FLUX.1-schnell',
'XLabs-AI/flux-ip-adapter',
'latent-consistency/lcm-lora-sdxl',
'Shakker-Labs/FLUX.1-dev-ControlNet-Union-Pro',
'stabilityai/stable-diffusion-3-medium-diffusers',
'cagliostrolab/animagine-xl-3.1',
'KBlueLeaf/Kohaku-XL-Zeta',
'SG161222/Realistic_Vision_V6.0_B1_noVAE',
'RunDiffusion/Juggernaut-X-v10',
'Yntec/epiCPhotoGasm',
]

// The patterns to set the caption of image
Expand Down

0 comments on commit 548e153

Please sign in to comment.