n8n/packages/nodes-base/nodes/Databricks/resources/modelServing/parameters.ts
Garrit Franke 76af1e6fd9
feat(databricks Node): Add basic databricks node (#27004)
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-23 08:16:41 +00:00

81 lines
2.2 KiB
TypeScript

import type { INodeProperties } from 'n8n-workflow';
export const modelServingParameters: INodeProperties[] = [
{
displayName: 'Endpoint',
name: 'endpointName',
type: 'resourceLocator',
default: { mode: 'list', value: '' },
required: true,
description:
"The model serving endpoint to query. The input format will be automatically detected from the endpoint schema. The node will fetch the endpoint's OpenAPI schema to determine the correct invocation URL.",
displayOptions: {
show: {
resource: ['modelServing'],
operation: ['queryEndpoint'],
},
},
modes: [
{
displayName: 'From List',
name: 'list',
type: 'list',
typeOptions: {
searchListMethod: 'getEndpoints',
searchable: true,
},
},
{
displayName: 'By Name',
name: 'name',
type: 'string',
placeholder: 'e.g. databricks-mixtral-8x7b-instruct',
validation: [
{
type: 'regex',
properties: {
regex: '^[a-zA-Z0-9_-]+$',
errorMessage:
'Must be a valid endpoint name (alphanumeric, hyphens, and underscores only)',
},
},
],
},
{
displayName: 'By URL',
name: 'url',
type: 'string',
placeholder: 'e.g. https://adb-xxx.cloud.databricks.com/ml/endpoints/my-endpoint',
hint: 'Use the endpoint page URL (/ml/endpoints/), not the /serving-endpoints/ invocation URL.',
extractValue: {
type: 'regex',
regex: 'https://[^/]+/ml/endpoints/([a-zA-Z0-9_-]+)',
},
},
],
},
// Simple JSON input - schema will be fetched and validated at runtime
{
displayName: 'Request Body',
name: 'requestBody',
type: 'json',
required: true,
default:
'{\n "messages": [\n {\n "role": "user",\n "content": "Hello!"\n }\n ]\n}',
placeholder: 'Request body will be validated against the endpoint schema',
description:
"Request body in JSON format. The node automatically detects the expected format from the endpoint's OpenAPI schema and validates your input at runtime.",
hint: 'See your model serving endpoint for example, request body format.',
displayOptions: {
show: {
resource: ['modelServing'],
operation: ['queryEndpoint'],
},
},
typeOptions: {
rows: 10,
},
},
];