[Improvement] improve github loader (#984)

This commit is contained in:
Deven Patel
2023-12-01 11:24:13 -08:00
committed by GitHub
parent b02e8feeda
commit 36af1a7615
8 changed files with 487 additions and 91 deletions

View File

@@ -64,7 +64,6 @@ class DataFormatter(JSONSerializable):
DataType.GMAIL: "embedchain.loaders.gmail.GmailLoader",
DataType.NOTION: "embedchain.loaders.notion.NotionLoader",
DataType.SUBSTACK: "embedchain.loaders.substack.SubstackLoader",
DataType.GITHUB: "embedchain.loaders.github.GithubLoader",
DataType.YOUTUBE_CHANNEL: "embedchain.loaders.youtube_channel.YoutubeChannelLoader",
DataType.DISCORD: "embedchain.loaders.discord.DiscordLoader",
}
@@ -75,6 +74,7 @@ class DataFormatter(JSONSerializable):
DataType.MYSQL,
DataType.SLACK,
DataType.DISCOURSE,
DataType.GITHUB,
]
)