Skip to content

Commit

Permalink
🐛 fix(controller): correct metadata and verification checks
Browse files Browse the repository at this point in the history
- Add proper formatting to metadata description
- Update NovelAI signature and latent space verifications
  • Loading branch information
sudoskys committed Sep 27, 2024
1 parent a811573 commit ef02ba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ async def tagger(self, file) -> str:
content.append(f"**📦 Model:** `{read_model.value}`")
if meta_data.Source:
content.append(f"**📦 Source:** `{meta_data.Source}`")
content.append(f"**📦 Mode**: `{mode}`")
content.append(f"**📦 Mode:** `{mode}`")
try:
is_novelai = False
has_latent = False
Expand Down

0 comments on commit ef02ba2

Please sign in to comment.