Add LangWatch integration (#2677)

Add langwatch integration
This commit is contained in:
Rogério Chaves
2024-06-21 17:26:55 +02:00
committed by GitHub
parent aec9e7a3b7
commit 0fc5e3d0c5
9 changed files with 1014 additions and 218 deletions
@@ -27,6 +27,7 @@ import { StyledButton } from '@/ui-component/button/StyledButton'
import langsmithPNG from '@/assets/images/langchain.png'
import langfuseSVG from '@/assets/images/langfuse.svg'
import lunarySVG from '@/assets/images/lunary.svg'
import langwatchSVG from '@/assets/images/langwatch.svg'
// store
import useNotifier from '@/utils/useNotifier'
@@ -109,6 +110,26 @@ const analyticProviders = [
optional: true
}
]
},
{
label: 'LangWatch',
name: 'langWatch',
icon: langwatchSVG,
url: 'https://langwatch.com',
inputs: [
{
label: 'Connect Credential',
name: 'credential',
type: 'credential',
credentialNames: ['langwatchApi']
},
{
label: 'On/Off',
name: 'status',
type: 'boolean',
optional: true
}
]
}
]