To simplify the python requirements needed to use the amazing mod that Sigiel uploaded, I made a simple powershell script in VS Code to handle the install for users, aswell as install python for anyone who didnt have it installed, you can either download the file and run it as admin via powershell or copy it into your ISE program of choosing from the Documentation section of the mod page. I believe evryone should be able to enjoy a great mod and wanted to provide a one click option for users to use this Chim NPC Generator - Sigiel
Like Eijin (below) I can't fire this up. Is there a preferred location for this Python script, or can it be run from anywhere?
Now, I understand there's additional parts like tkinter and research libraries, but it would be good to have links to find these. Because I have not one clue. I have the latest Python, but I am not a Python user! So it's a kind of hazy thing that sits on my PC and does stuff. Hope you can help. Thanks!
Cool, thanks. I installed Requests OK. Did you mean tkinter for your second line? I tried that, and I get a fail due to it reporting the module is out of date. However, I can now open your GUI!
I'm a little confused, where exactly does this get installed? The image shows an application but as far as I can tell the file is just a single python script?
yes, amongst other things, since my template force the description of the persona in the first person. (npc presenting himself)
what this does, is simple, chim require 3 texts to make the AI impersonate a character correctly,
prompt head (general roleplaying rule) player bio (description of your character so the Ai know to who it speak) herika pers. (the NPC persona)
when you format and make those 3 prompt in synergy, the LLM impersonate them better.
this tools leverage the LLM to make them for you, instead of passing hours to create those prompt by hand , you just drop a general overview of you character, and ask the LLM AI do do it for you.
the rules of creating the persona is written in a master template; mine that i created, and is on by default is pretty good.
i wanted a fire and forget tool. that cut me slack, this is it.
13 comments
Python Installer
Now, I understand there's additional parts like tkinter and research libraries, but it would be good to have links to find these. Because I have not one clue.
I have the latest Python, but I am not a Python user! So it's a kind of hazy thing that sits on my PC and does stuff.
Hope you can help. Thanks!
pip install requests
those are the two commands
Did you mean tkinter for your second line?
I tried that, and I get a fail due to it reporting the module is out of date.
However, I can now open your GUI!
Required Python Libraries:
os
→ (Comes with Python, no installation needed)sqlite3
→ (Comes with Python, no installation needed)tkinter
requests
json
→ (Comes with Python, no installation needed)random
→ (Comes with Python, no installation needed)re
→ (Comes with Python, no installation needed)tkinker
requests
(npc presenting himself)
what this does, is simple, chim require 3 texts to make the AI impersonate a character correctly,
prompt head (general roleplaying rule)
player bio (description of your character so the Ai know to who it speak)
herika pers. (the NPC persona)
when you format and make those 3 prompt in synergy, the LLM impersonate them better.
this tools leverage the LLM to make them for you, instead of passing hours to create those prompt by hand , you just drop a general overview of you character, and ask the LLM AI do do it for you.
the rules of creating the persona is written in a master template; mine that i created, and is on by default is pretty good.
i wanted a fire and forget tool. that cut me slack, this is it.