mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 16:43:16 +00:00
11 lines
376 B
Python
11 lines
376 B
Python
from langchain.document_loader import TelegramChatApiLoader, TelegramChatFileLoader
|
|
from application.parser.remote.base import BaseRemote
|
|
|
|
class TelegramChatApiRemote(BaseRemote):
|
|
def _init_parser(self, *args, **load_kwargs):
|
|
self.loader = TelegramChatApiLoader(**load_kwargs)
|
|
return {}
|
|
|
|
def parse_file(self, *args, **load_kwargs):
|
|
|
|
return text |