n8n node for Databricks AI models
npm install n8n-nodes-databricks-aiThis is a community node for n8n that integrates with Databricks AI Models. It allows you to make predictions using deployed Databricks models directly from your n8n workflows.
- Connect to Databricks using API authentication
- Make predictions using deployed Databricks ML models
- Support for MLflow model serving endpoints
- Error handling and response formatting
1. Go to Settings > Community Nodes
2. Select Install
3. Enter n8n-nodes-databricks-ai in the input field
4. Click Install
To install this node manually:
``bash`
pnpm install n8n-nodes-databricks-ai
1. Create credentials for Databricks API:
- Get your Databricks workspace URL
- Generate a personal access token from Databricks
2. Configure the Databricks AI Model node:
- Select your Databricks credentials
- Enter the Model ID of your deployed model
- Format your input data according to the MLflow serving format:
`json``
{
"dataframe_split": {
"columns": ["feature1", "feature2"],
"data": [[value1, value2]]
}
}
3. The node will return the model's predictions in the output.
* n8n community nodes documentation
* Databricks MLflow model serving documentation
- 0.1.0: Initial release