feat: Add Arize & Phoenix Tracer Integration (#4046)

Added Arize Phoenix Tracer

Co-authored-by: Ilango <ilango.rajagopal@flowiseai.com>
This commit is contained in:
Ali Saleh
2025-02-24 19:41:30 +05:00
committed by GitHub
parent 542936c33f
commit 0e10952b45
13 changed files with 36241 additions and 35628 deletions
@@ -0,0 +1,33 @@
import { INode, INodeParams } from '../../../src/Interface'
class Phoenix_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 = 'Phoenix'
this.name = 'phoenix'
this.version = 1.0
this.type = 'Phoenix'
this.icon = 'phoenix.png'
this.category = 'Analytic'
this.baseClasses = [this.type]
this.inputs = []
this.credential = {
label: 'Connect Credential',
name: 'credential',
type: 'credential',
credentialNames: ['phoenixApi']
}
}
}
module.exports = { nodeClass: Phoenix_Analytic }
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB