Creating a Dataflow Using AI Assistant
With Neo Extensions, you can now generate dataflows using natural language prompts through the built-in AI assistant—AIRA. This simplifies the workflow creation process, reducing manual effort and speeding up development.
-
Log in to the Neo Extensions UI and create a new dataflow.
-
Click on the default version (e.g., v1) in the top-left panel.
-
Launch the AIRA Coder by clicking the chat icon in the bottom-right corner.
-
Enter your prompt describing what you want to build.
- Neo uses Retrieval-Augmented Generation (RAG) to enrich your prompt with context.
- The LLM identifies required building blocks such as Schema, Script, or API blocks.
-
Click the Send icon to submit the prompt.
-
AIRA returns a proposed dataflow with a step-by-step explanation.
-
Review the result and click:
- Accept – to render it on the canvas
- Reject – to discard and revise
Testing and Executing the Dataflow
Before execution:
- Update the API URL in the Trigger block
- Save the dataflow
To test and monitor execution, refer to the Execution & Monitoring guide.
Prompting Best Practices
To get the best results from AIRA, follow these tips:
- Use clear and specific language
- Write in full sentences or step-by-step instructions
- Avoid vague prompts like
Hi
orHelp
Example Prompt
Create a dataflow to perform the following:
1. Take input: FFN, Fname, Lname
2. Validate the parameters
3. Fetch customer details
4. Extract names for alias check
5. Perform alias validation
Updated about 13 hours ago