Skip to content

Commit

Permalink
Merge pull request FlowiseAI#34 from FlowiseAI/feature/NotionLoader
Browse files Browse the repository at this point in the history
add Notion loader
  • Loading branch information
chungyau97 committed Apr 27, 2023
2 parents a4b5683 + 7935352 commit bf60b88
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions packages/components/nodes/documentloaders/Notion/Notion.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
import { INode, INodeData, INodeParams } from '../../../src/Interface'
import { TextSplitter } from 'langchain/text_splitter'
import { NotionLoader } from 'langchain/document_loaders/fs/notion'

class Notion_DocumentLoaders implements INode {
label: string
name: string
description: string
type: string
icon: string
category: string
baseClasses: string[]
inputs: INodeParams[]

constructor() {
this.label = 'Notion Folder'
this.name = 'notionFolder'
this.type = 'Document'
this.icon = 'notion.png'
this.category = 'Document Loaders'
this.description = `Load data from Notion folder`
this.baseClasses = [this.type]
this.inputs = [
{
label: 'Notion Folder',
name: 'notionFolder',
type: 'string',
description: 'Get folder path',
placeholder: 'Paste folder path'
},
{
label: 'Text Splitter',
name: 'textSplitter',
type: 'TextSplitter',
optional: true
}
]
}

async init(nodeData: INodeData): Promise<any> {
const textSplitter = nodeData.inputs?.textSplitter as TextSplitter
const notionFolder = nodeData.inputs?.notionFolder as string

const loader = new NotionLoader(notionFolder)

if (textSplitter) {
const docs = await loader.loadAndSplit(textSplitter)
return docs
} else {
const docs = await loader.load()
return docs
}
}
}

module.exports = { nodeClass: Notion_DocumentLoaders }
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit bf60b88

Please sign in to comment.