-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Telegram and Text Files connectors #20
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for adding all these connectors! 🚀
README.md
Outdated
|
||
On the roadmap: | ||
* Load data using any [LlamaHub loader](https://llamahub.ai/?tab=loaders) (partial support is available through the API). | ||
* Directly and selectively query loaded data. | ||
* Load data using any [LlamaHub loader](https://llamahub.ai/?tab=loaders). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this on the roadmap? I thought we were going with the approach of "one connector for each data source" vs "support all llamahub loaders", because the E2E flow for each connector varies.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think a general-purpose LlamaHub loader should be possible, probably with some limitations (some loaders need additional python dependencies), but I've removed it until we can clarify further.
return [ | ||
DocumentDTO( | ||
content=data_uri_to_string(data_uri), | ||
content_type="text/plain", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be application/json?
return [ | ||
DocumentDTO( | ||
content=data_uri_to_string(data_uri), | ||
content_type="text/plain", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
text/html?
No description provided.