added more logging

This commit is contained in:
Matthew Ratzke
2023-06-05 12:33:45 -06:00
parent eb27485913
commit 3d1b34bf3d
@@ -81,6 +81,7 @@ class Github_DocumentLoaders implements INode {
console.log('🤖[GithubRepoLoader]: Initializing!');
const loader = new GithubRepoLoader(repoLink, options)
console.log('🤖[GithubRepoLoader]: Loading documents from ' + repoLink);
const docs = textSplitter ? await loader.loadAndSplit(textSplitter) : await loader.load()
console.log('🤖[GithubRepoLoader]: Documents Loaded!');