Joe Gores

Results 10 comments of Joe Gores

Whoa, it looks like it works with ControlNet-Tile too!

This should currently be possible by opening your code directories in your VSCode workspace and using relative paths in your `require`. Check out the [nested file feature](https://github.com/rolandostar/tabletopsimulator-lua-vscode#nested-file-feature) to see if...

I ended up moving that file into my repo and then symlinking it to the game directory. Even though this question isn't specific to this extension, I'd still be curious...

It's not that it's a bad idea, but the scope seems pretty large. If TTS ever changes the structure of their exported JSON even a little, it could become a...

Here's the workaround I've been using: ``` javascript var contacts; var chatBot = new wobot.Bot({ jid: process.env.HIPCHAT_JID, password: process.env.HIPCHAT_PASS }); chatBot.onConnect(function() { contacts = getContacts(); }); chatBot.onMessage(/someRegex/, function(channel, from, message,...

I'm not the original poster, but I do use their one-click installer for cloud services. While modifying localStorage by injecting an early-loaded script into the html is certainly one approach,...

The README shows a [list of environment variables](https://github.com/ai-dock/comfyui?tab=readme-ov-file#additional-environment-variables) you can change, and `AUTO_UPDATE` is one of them. Have you tried that, or does that not do what I think it...

Being able to pass an `endpointNameOverride` function in the config would be amazing.

This is definitely a bug that I hope they eventually fix. In the meantime, I was able to work around this specific problem with some css overrides. ### With CSS...

I want to reiterate the point that failing on startup because of an invalid custom slash-command (and in my case just today after an update, a custom agent) _prevents us...