quivr/backend/parsers/telegram.py
Stan Girard 5eed1a05cb
feat: 🎸 telegram (#1555)
added loaders and compatibility

# Description

Please include a summary of the changes and the related issue. Please
also include relevant motivation and context.

## Checklist before requesting a review

Please delete options that are not relevant.

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented hard-to-understand areas
- [ ] I have ideally added tests that prove my fix is effective or that
my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged

## Screenshots (if appropriate):
2023-11-01 22:09:04 +01:00

20 lines
440 B
Python

from loaders.telegram import TelegramChatFileLoader
from models import File
from .common import process_file
def process_telegram(
file: File,
enable_summarization,
brain_id,
user_openai_api_key,
):
return process_file(
file=file,
loader_class=TelegramChatFileLoader,
enable_summarization=enable_summarization,
brain_id=brain_id,
user_openai_api_key=user_openai_api_key,
)