Erik Peterson
Erik Peterson
Commenting here, because there are roughly a half-dozen other issues and this is slightly off-topic for all of them. Why not have the child check `Process.ppid` after every queue item,...
I think the issue is that the parent can't really be responsible for determining when a child is runaway, or whether it's just busy and can't handle the TERM. Checking...
I forgot that not everybody uses a plugin for executing multiple jobs per fork. My proposal is only viable within the confines of multiple jobs being executed within a single...
Personally, I much prefer the way that vim-ruby does it by default. However, it appears as if the community (or at least bbatsov) disagree. I know it's not really an...
Semi-related: https://github.com/Significant-Gravitas/Auto-GPT/pull/4548 will automatically install requirements.txt files of plugins that are in directories.
Is the exception being raised from inside the `else` block? Try this ``` try: MyModel(value1=value1, value2=value2) db.flush() db.commit() except pony.orm.core.TransactionIntegrityError as exc: print(f'Error: {exc}') ```
This is already available in `Workspace.root`, and is set in `main.py`. I think if we add this as a configuration item it would be best to update main.py to use...
Simplest implementation to fix issue in #4649
I totally missed this issue, I apologize. Here is my implementation https://github.com/Significant-Gravitas/Auto-GPT/pull/4548/files
FYI if this happens I would recommend Ariadne for the python library. Here's a quick page on how to integrate it into an existing fastapi instance so it's easy for...