diff --git a/model_presets.toml b/model_presets.toml index 02d8fe7..df93602 100644 --- a/model_presets.toml +++ b/model_presets.toml @@ -6,7 +6,7 @@ ["noobaiXLNAIXL_vPred10Version"] description = "Anime-style model, very stylistic and not aesthetic-tuned. Can do any NSFW." guide = """ -This model is not aesthetic tuned, it must be given explicit tags for everything. Omitted parts of the prompt will not default to something 'good'. +This model is not aesthetic tuned, it must be given explicit tags for everything. Omitted parts of the prompt will not default to something 'good'. This model is very fickle, you will almost always need to iterate on the prompt or resubmit to roll the best picture. Has very excellent understanding of characters and artists down to extremely niche. Unless prompting an original character, their name is enough to decribe their appearance completely except for clothing. Accepts a list of comma-separated booru-style tags. Use spaces, not underscores, for tags. Prompts MUST follow this format: <1girl/1boy/1other/solo/couple/(can use multiple)>, , , , diff --git a/tools/generate_image.py b/tools/generate_image.py index 6ed7faf..21d3e28 100644 --- a/tools/generate_image.py +++ b/tools/generate_image.py @@ -141,7 +141,7 @@ async def handle(args: Dict[str, Any]) -> List[Dict[str, Any]]: return [ { "type": "text", - "text": f"Image successfully generated using model '{model_name}'.\n\nTo show the image to the user, you can include this markdown link in your response: ![Generated Image]({proxy_url})" + "text": f"Image successfully generated using model '{model_name}'.\n\nLocal path: {raw_path}\nTo show the image to the user, you can include this markdown link in your response: ![Generated Image]({proxy_url})" }, { "type": "image", diff --git a/tools/wikipedia.py b/tools/wikipedia.py index 0d28084..eedfd5a 100644 --- a/tools/wikipedia.py +++ b/tools/wikipedia.py @@ -62,7 +62,7 @@ async def _search(title: str, limit: int = 5, fallback: bool = False) -> str: lines.append(f"{i}. [{title_res}] - Snippet: {snippet}") if fallback: - lines.append("\n[Tip: Use the title in brackets [ ] to explore the selected page.]") + lines.append("\nUse the title in brackets [ ] to explore the selected page.") return "\n".join(lines)