madc0w
madc0w
The current version of Raven is 3.15.0, but it appears that this package is using 1.1.16. Any plans to upgrade?
In mobile-config.js, we have: ``` App.accessRule("*.google.com/*"); App.accessRule("*.googleapis.com/*"); App.accessRule("*.gstatic.com/*"); ``` And yet, this: ``` Tracker.autorun(() => { if (GoogleMaps.loaded()) { geocoder.set(new google.maps.Geocoder()); } }); ``` yields the following stack: (anonymous function)...
I see that the latest commit to Editr.vue implemented a blur event, but I can't seem to receive this event, for some reason. ``` ``` change works great, but we...
Immediately on load: TypeError: Cannot read property 'splice' of null at blaze.js:2855 at Object.Tracker.nonreactive (tracker.js:640) at Object.addedAt (blaze.js:2824) at Object.addedBefore (observe-sequence.js:234) at diff-sequence.js:204 at Array.forEach () at DiffSequence.diffQueryOrderedChanges (diff-sequence.js:194) at...
The reason being that the token provided has a 24-hour lifespan. Refreshing this token manually every day is not a prod solution. Is there any way to exchange this user...
According to docs: new Midjourney(SALAI_TOKEN) directly provide SALAI_TOKEN in this case a 72 char long SALAI_TOKEN token should be pass to the Midjourney constructor like: new Midjourney(SALAI_TOKEN) https://www.npmjs.com/package/midjourney-discord-api#new-midjourneysalai_token-directly-provide-salai_token Since this...
This call: ``` import { patch } from 'astra-assistants'; import OpenAI from 'openai'; const originalOpenai = new OpenAI({ apiKey: process.env.OPENAI_API_KEY }); const openaiBot = patch(originalOpenai); openaiBot.beta.threads.runs.create.bind(openaiBot.beta.threads.runs)( threadId, { assistant_id: process.env.OPENAI_ASSISTANT_ID,...