Artem Vysotsky

Results 8 comments of Artem Vysotsky

I found a workaround for now but I don't think it is pretty. I invoke tryStartEdit right within `isStartEditKeyPressed` with the correct `rowIndex` and `columnId` values ```js const isStartEditKeyPressed =...

So, I tested this code, and found that the platform tools mess up with server side functions since the code is shared. I.e. with current architecture it is impossible to...

@fkesheh, let me rephrase the question, let's assume I need to build a DALL-E tool, which needs access to an environment variable to read credentials, how would I use your...

Try adding `getServerProfile` in your `webScraper` tool and see what happens. You can't execute any server side code inside the platform tool since you use `platformToolDefinitions` in the `pages` and...

you cannot create it from the dashboard. You need custom code.

Same, please follow our development here https://github.com/writingmate/chatlabs

Again, it is not possible to create a tool that can be "imported from the dashboard". All platform tools require additional coding.

Here is how to disable image optimization in next.config.js ``` const withBundleAnalyzer = require("@next/bundle-analyzer")({ enabled: process.env.ANALYZE === "true" }) const withPWA = require("next-pwa")({ dest: "public" }) module.exports = withBundleAnalyzer( withPWA({...