What should I write on the AI node? I
What should I write on the AI node? I write argon2 hash and it never stops trying to produce the output
4 Replies
You can refer to this example prompt - https://buildship-docs-git-seo-init-rowy.vercel.app/ai-nodes#example-prompt-to-generate-node-using-any-api
AI Generated Nodes – BuildShip
A unified resource to start building your backend with low-code. Dive into triggers, nodes, and step-by-step guidance to jumpstart your workflow creation.
I read the link but I am still confused on what I should write on the Buildship AI
@Gaurav Chadha I read the link but I am still confused on what I should write on the Buildship AI
@Gaurav Chadha how can I install argon2 on Buildship?
@adrfinance We have now released the brand new AI Generator which will make this even more easier. You can specify your requirements on what you need from the node. You can't manually install, but import any npm package, example
import argon2 from "argon2"
@Gaurav Chadha I am using the AI generated code import argon2 from 'argon2';
export default async function argon2Hashing({
password
}) {
const hash = await argon2.hash(password);
return hash;
}
But I am getting an error
Any ideas @Gaurav Chadha ?