Chaoses-Ib
Chaoses-Ib
其实两年前 Everything v1.5 就支持简拼搜索了,这也是我两年前停更的原因之一,另一个原因是入职了 Listary,一方面要边兼顾学业边工作比较忙,另一方面多少也有些竞争在。现在 Everything 已经支持了全拼搜索,我再更新的意义就更小了。虽然作者要自己造轮子,不用我的代码,让我觉得有点惋惜,不过起码也能用。 你可以到这里跟 Everything 的作者反馈拼音搜索相关的需求:https://www.voidtools.com/forum/viewtopic.php?t=12073
[v0.7.0](https://github.com/Chaoses-Ib/IbEverythingExt/releases/tag/v0.7.0) 已发布,支持 Everything v1.5 最新版。
> The official builds target MSVC x32, and we don't support dynamic modules for this target. > This could possibly be worked around by using `i686-pc-windows-msvc` or MinGW family of...
See https://github.com/Chaoses-Ib/ComfyScript/issues/19. ComfyScript will send workflows (both the source code and the prompt) to the backend. Whether they will be embed totally depends on the node you are using.
Another workaround is to run tgcf-web under Python 3.11, e.g. `uvx --from tgcf --python 3.11 tgcf-web`
Same on Windows Edge.
Oh, I just found it's not officially supported by JSON Schema: https://github.com/json-schema-org/json-schema-vocabularies/issues/47. Though there is a workaround: ```json { "docHint": "enum", "anyOf": [ { "const": "a", "description": "A" }, {...
I've made a fork of `nest-asyncio` to fix support for Python 3.12 and 3.14: [nest-asyncio2](https://github.com/Chaoses-Ib/nest-asyncio2#comparison-with-nest_asyncio). Since it's also used in my own project, I'm going to maintain it for a...
Does virtual mode have the correct result? By the way, there is a built-in node `ImageToPIL` to convert VAE decoded images to PIL images in real mode.
What seems most suspicious to me is the image transforming, does `ImageToPIL` have the same result with the following code? ```python for idx, img in enumerate(ImageToPIL(image4)): path = "./pulid_{idx}.jpg".format(idx=idx) img.save(path)...