The Giskard RED Challenge Helper is a Chrome extension designed to assist users participating in the Giskard RED LLM red-teaming challenge. It logs pr

Search code, repositories, users, issues, pull requests...

submited by
Style Pass
2024-10-22 08:00:05

The Giskard RED Challenge Helper is a Chrome extension designed to assist users participating in the Giskard RED LLM red-teaming challenge. It logs prompts and outputs from the challenge, allowing users to easily review and export their interaction data.

The extension watches for changes to the DOM and captures prompts and responses using IndexedDB local storage. The database is then queried to display the history. One tricky part is that the challenge website is a SPA (try to go back when you click here) and so we need to also handle navigation on the site (I opted for watching the URL in addition to the page contents).

Leave a Comment