Robin Modisch

Results 52 comments of Robin Modisch

You might want to request a URL change on the automatic1111 repo, I just stumbled upon the branch after installing from the UI and getting weird errors.

It's a pity, but I absolutely get your thinking. It might be interesting to note this in the readme somewhere? "Probably, but not proven" is still better than each individual...

Some results from my understanding: 1. https://github.com/wagiminator/Power-Boards/tree/master/LiPo_Charger_LS_TP4056 is for unregulated LiPo output 2. https://github.com/wagiminator/Power-Boards/tree/master/LiPo_Power_Board_FP6277 is an extension of that with boost to stable 5V 3. https://github.com/wagiminator/Power-Boards/tree/master/LiPo_Power_Board_FP6298 is the same, just...

Replace #20 with this!

https://pytest-cov.readthedocs.io/en/latest/ from github actions could be kind of nice

also see https://github.com/pytest-dev/pytest-cov/issues/374 to eventually skip generation of useless .coverage file

Measure RAM size and performance for a comparison. Caching will result in some faster responses, but slows down every request and will increase ram usage.

It would also be nice to get a "/cached" path to debug successful caching and offer "offline" solutions Remember to add a "cached" field to response object

Problem: Uvicorn will spawn different processes in parallel, which will have difficulties keeping a shared cache. Redis and other external solutions might be nice, but have huge overhead. Might be...