feat: Add Opik Tracer integration (#4194)

This update adds support for Opik tracer in Flowise. It includes new
credential components, analytic nodes, and UI assets for both tracers. The
changes enhance observability by allowing users to integrate Opik for better
model monitoring, analysis and evaluation.
This commit is contained in:
Boris Feld
2025-04-03 09:57:54 +02:00
committed by GitHub
parent a07546145d
commit dd56d03b78
6 changed files with 311 additions and 2 deletions
@@ -0,0 +1,33 @@
import { INode, INodeParams } from '../../../src/Interface'
class Opik_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 = 'Opik'
this.name = 'opik'
this.version = 1.0
this.type = 'Opik'
this.icon = 'opik.png'
this.category = 'Analytic'
this.baseClasses = [this.type]
this.inputs = []
this.credential = {
label: 'Connect Credential',
name: 'credential',
type: 'credential',
credentialNames: ['opikApi']
}
}
}
module.exports = { nodeClass: Opik_Analytic }
Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB