feat: add weave panel components and config modal

pull/14262/head
Bharat Ramanathan 1 year ago
parent 9f7d093868
commit 674ffd9020

@ -152,6 +152,9 @@ const ConfigPopup: FC<PopupProps> = ({
if (opikConfig) if (opikConfig)
configuredPanels.push(opikPanel) configuredPanels.push(opikPanel)
if (weaveConfig)
configuredPanels.push(weavePanel)
return configuredPanels return configuredPanels
} }
@ -169,6 +172,8 @@ const ConfigPopup: FC<PopupProps> = ({
if (!opikConfig) if (!opikConfig)
notConfiguredPanels.push(opikPanel) notConfiguredPanels.push(opikPanel)
if (!weaveConfig)
notConfiguredPanels.push(weavePanel)
return notConfiguredPanels return notConfiguredPanels
} }
@ -224,6 +229,7 @@ const ConfigPopup: FC<PopupProps> = ({
{langSmithPanel} {langSmithPanel}
{langfusePanel} {langfusePanel}
{opikPanel} {opikPanel}
{weavePanel}
</div> </div>
</> </>
) )

Loading…
Cancel
Save