Shroototem

Results 16 comments of Shroototem

I fixed this by modifying `src/models/gemini.js`. **Modify the constructor:** ```js constructor(model_name, url) { this.model_name = model_name; this.url = url; this.safetySettings = [ { category: HarmCategory.HARM_CATEGORY_DANGEROUS_CONTENT, threshold: HarmBlockThreshold.BLOCK_NONE, }, { category:...

You can also use the new and experimental Gemini models by updating the `@google/generative-ai` to the newest version. ``` npm remove @google/generative-ai npm install @google/generative-ai ``` This will remove the...

Emergent Garden has a video for install instructions if you need some help. [Install tutorial link](https://www.youtube.com/watch?v=gRotoL8P8D8) Please try to close the issue if it's fixed. ❤️

`newAction` should be formatted like so `!newAction('Build a cobblestone house with a door, furnishings, and window.')` and the ai can learn it from within the profile json file. It's also...

When using the newer models I've found that removing the current generative-ai package and installing the latest fixes the issue. ``` npm r @google/generative-ai npm i @google/generative-ai ```