Merge pull request #1259 from FlowiseAI/feature/VectaraChain

Feature/Add vectara chain
This commit is contained in:
Henry Heng
2023-11-21 14:44:43 +00:00
committed by GitHub
6 changed files with 324 additions and 7 deletions
@@ -699,7 +699,10 @@ const ViewMessagesDialog = ({ show, dialogProps, onCancel }) => {
{message.sourceDocuments && (
<div style={{ display: 'block', flexDirection: 'row', width: '100%' }}>
{removeDuplicateURL(message).map((source, index) => {
const URL = isValidURL(source.metadata.source)
const URL =
source.metadata && source.metadata.source
? isValidURL(source.metadata.source)
: undefined
return (
<Chip
size='small'