Eric Allen
Eric Allen
The current, incorrect format of the `LICENSE` file prevents GitHub from recognizing the license type which leads to the GitHub API response giving a response without any relevant license info...
It's much easier to keep Documentation and Source Code in sync when they are easily viewable at the same time and PRs that address changes in one can update the...
### Describe the changes you have made: This work-in-progress introduces the ability to edit code in your default editor before running it. When Open Interpreter asks if you want to...
# What does this PR do? This PR introduces a new tutorial notebook that builds on top of the [LangChain RAG Quickstart tutorial](https://python.langchain.com/docs/use_cases/question_answering/quickstart/) to illustrate how [indirect prompt injection](https://www.lakera.ai/blog/guide-to-prompt-injection#direct-prompt-injection-vs-indirect-prompt-injection) can...
This allows the user to easily apply limit and sort options along with various other Mongo options to the `.find()` query via the standard API that monk exposes. I added...
It doesn't seem to be possible to use `sort` or `limit` with `botkit-storage-mongo` because the exposed API does not accept options and pass them through to `monk`. This means you...
Publishing is a totally manual process right now, which really isn't ideal. There are definitely ways to automate this out there. Probably need to get #13 resolved since automated publishing...
The `src/index.js` file is way to large and way to hard to keep it all in your head when working on it. It needs to be broken down into more...
Utilize something like [devcert](https://github.com/davewasmer/devcert) to dynamically generate an SSL certificate for the Journal Server. Also allow developer to pass custom certificate into constructor, this same property (probably named `ssl`) should...
Instead of using `console.log()` we should call a `createLog()` method that will use an `EventEmitter` as well as `console.log()`ing the message. This should facilitate having applications built around this that...