Review of "Penguin: AI Chatbot" version 1

Details Page Preview

A GNOME Shell extension that uses openrouter.ai services - a platform/marketplace that offers APIs to talk to LLMs. Some of these APIs are free to use, including the one used by default in the extension: Reflection Llama 3.1 70B. What can it do? Create new conversations, remember chat history after logging out, be a chatbot (powered by Llama 3.1 70B at default), use other LLMs (Using openrouter.ai)

Extension Homepage
https://martijara.gitlab.io/Penguin-AI-Chatbot-for-GNOME/

No comments.

FAQ

Files

Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.

All Versions

Version Status
10 Active
9 Rejected
8 Active
7 Inactive
6 Rejected
5 Inactive
4 Inactive
3 Inactive
2 Inactive
1 Rejected

Previous Reviews on this Version

JustPerfection rejected
1. Bad xml filename: [EGO Review Guidelines: GSettings Schemas](https://gjs.guide/extensions/review-guidelines/review-guidelines.html#gsettings-schemas) 2. Please use [`Soup.Session.abort()`](https://gjs-docs.gnome.org/soup30~3.0/soup.session#method-abort) on destroy. To do that, you need to add `destroy()` function to the `Indicator` class: ```js destroy() { this._session?.abort(); // <- Don't forget to make the session instance avaialable to the class super.destroy(); } ``` 3. Add to the description that this extension is using `openrouter.ai` services. 4. Please use a correct class name for the default classes you are exporting in both `extension.js` and `prefs.js`.