Rubiksman78 / MonikA.I

Submod for MAS with AI based features
MIT License
112 stars 17 forks source link

Does this still work?? ("It seems theres a bug somewhere") #100

Open Itsukiomo opened 1 month ago

Itsukiomo commented 1 month ago

Ive been trying to use the mod and voicechat and textchat both dont work. It keeps saying theres a bug. I was wondering if this submod works still. And if it does how do I fix my problem.

xztJLAU commented 1 month ago

If your webUI and mod start normally, it's a web page loading problem, and you can solve it by waiting for all to load only partially. We can start with 125 lines

def launch(context): page = context.new_page() page.goto("http://127.0.0.1:7860/")

page.wait_for_load_state("networkidle")

page.wait_for_load_state("domcontentloaded")

context.storage_state(path="storage.json") return page