mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 13:00:56 +03:00
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:
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
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user