AI workflow assistant (beta)¶
The AI assistant generates node graphs from text descriptions. Describe what you want to do and it builds the pipeline for you.
Open it from View > AI Assistant in the menu bar.
Setup¶
- Select a Provider from the dropdown
- Paste your API Key (not needed for local providers such as Ollama)
- Click the refresh button to load available models
- Pick a model
Providers¶
| Provider | API Key | Notes |
|---|---|---|
| Ollama | not needed | Local. Install from ollama.com, then pull a model (ollama pull gemma3:12b) |
| Ollama Cloud | needed | Create an account at ollama.com, then get a key at ollama.com/settings/keys |
| OpenAI | needed | Get a key at platform.openai.com/api-keys |
| Claude | needed | Get a key at console.anthropic.com |
| Groq | needed | Free tier available at console.groq.com |
| Gemini | needed | Free tier available at aistudio.google.com |
| RunPod | needed | Serverless vLLM endpoint. Enter your Endpoint ID separately |
API keys are stored locally and never sent anywhere except the selected provider.
Usage¶
-
Type a description of the workflow you want, e.g.:
Load a CSV, filter out data with area > 100, then make a bar plot
-
Include current workflow as context (optional): check this to let the AI see and modify your existing pipeline instead of building from scratch
-
Verbose node descriptions (optional): sends full docstrings to the model for better context. Larger prompt but more accurate results.
-
Click Generate Workflow. This takes 10-60 seconds depending on the model.
-
Review the generated JSON in the preview panel
-
Click Load into Canvas to append the nodes, or Replace Canvas to start fresh
Tips¶
- Simpler prompts work better. Break complex pipelines into steps.
- If the model gets a port name wrong (you'll see warnings), try regenerating or fix the connection manually.