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
Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

@@ -30,6 +30,7 @@ import lunarySVG from '@/assets/images/lunary.svg'
import langwatchSVG from '@/assets/images/langwatch.svg'
import arizePNG from '@/assets/images/arize.png'
import phoenixPNG from '@/assets/images/phoenix.png'
import opikPNG from '@/assets/images/opik.png'
// store
import useNotifier from '@/utils/useNotifier'
@@ -188,6 +189,33 @@ const analyticProviders = [
optional: true
}
]
},
{
label: 'Opik',
name: 'opik',
icon: opikPNG,
url: 'https://www.comet.com/opik',
inputs: [
{
label: 'Connect Credential',
name: 'credential',
type: 'credential',
credentialNames: ['opikApi']
},
{
label: 'Project Name',
name: 'opikProjectName',
type: 'string',
description: 'Name of your Opik project',
placeholder: 'default'
},
{
label: 'On/Off',
name: 'status',
type: 'boolean',
optional: true
}
]
}
]