Merge pull request #952 from vinodkiran/FEATURE/analytic-llmonitor

Adding support for LLMonitor
This commit is contained in:
Henry Heng
2023-09-21 12:14:53 +01:00
committed by GitHub
7 changed files with 101 additions and 4 deletions
@@ -0,0 +1,33 @@
import { INode, INodeParams } from '../../../src/Interface'
class LLMonitor_Analytic implements INode {
label: string
name: string
version: number
description: string
type: string
icon: string
category: string
baseClasses: string[]
inputs?: INodeParams[]
credential: INodeParams
constructor() {
this.label = 'LLMonitor'
this.name = 'llmonitor'
this.version = 1.0
this.type = 'LLMonitor'
this.icon = 'llmonitor.png'
this.category = 'Analytic'
this.baseClasses = [this.type]
this.inputs = []
this.credential = {
label: 'Connect Credential',
name: 'credential',
type: 'credential',
credentialNames: ['llmonitorApi']
}
}
}
module.exports = { nodeClass: LLMonitor_Analytic }
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB