Skip to content

Commit

Permalink
Add built in node descriptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
robinjhuang committed Mar 27, 2024
1 parent aa7601a commit d51d819
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
32 changes: 32 additions & 0 deletions built-in-nodes/loaders/checkpoint_loader.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: "Load Checkpoint"
---

The Load Checkpoint node can be used to load a diffusion model, diffusion models are used to denoise latents. This node will also provide the appropriate VAE and CLIP model.

## Inputs

<ResponseField name="ckpt_name">


The name of the model.
</ResponseField>


## Outputs

<ResponseField name="MODEL">

The model used for denoising latents.

</ResponseField>

<ResponseField name="CLIP">

The CLIP model used for encoding text prompts.
</ResponseField>

<ResponseField name="VAE">

The VAE model used for encoding and decoding images to and from latent space.
</ResponseField>
8 changes: 8 additions & 0 deletions mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@
"pages": ["essentials/custom_node_interface", "essentials/custom_node_lifecycle"]
},
"essentials/models",
{
"group": "Built in nodes",
"icon": "code-commit",
"pages": [{
"group": "Loaders",
"pages": ["built-in-nodes/loaders/checkpoint_loader"]
}]
},
"essentials/execution_order"
]
},
Expand Down

0 comments on commit d51d819

Please sign in to comment.