Merge branch 'main' into feature/output-parsers

# Conflicts:
#	packages/ui/src/views/chatmessage/ChatMessage.js
This commit is contained in:
Henry
2023-11-03 13:10:06 +00:00
82 changed files with 3193 additions and 444 deletions
+3 -2
View File
@@ -133,6 +133,7 @@ export const getNodeModulesPackagePath = (packageName: string): string => {
* @returns {boolean}
*/
export const getInputVariables = (paramValue: string): string[] => {
if (typeof paramValue !== 'string') return []
let returnVal = paramValue
const variableStack = []
const inputVariables = []
@@ -302,7 +303,7 @@ async function crawl(baseURL: string, currentURL: string, pages: string[], limit
}
/**
* Prep URL before passing into recursive carwl function
* Prep URL before passing into recursive crawl function
* @param {string} stringURL
* @param {number} limit
* @returns {Promise<string[]>}
@@ -446,7 +447,7 @@ export const getCredentialData = async (selectedCredentialId: string, options: I
if (!credential) return {}
// Decrpyt credentialData
// Decrypt credentialData
const decryptedCredentialData = await decryptCredentialData(credential.encryptedData)
return decryptedCredentialData