-
Notifications
You must be signed in to change notification settings - Fork 15.2k
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
unstructured[patch]: support loading URLs #26670
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
LGTM. Only comment would be to potentially add an example to |
Thanks, added! |
`unstructured.partition.auto.partition` supports a `url` kwarg, but `url` in `UnstructuredLoader.__init__` is reserved for the server URL. Here we add a `web_url` kwarg that is passed to the partition kwargs: ```python self.unstructured_kwargs["url"] = web_url ```
**Description:** update package version to support loading URLs langchain-ai#26670 **Issue:** langchain-ai#26697
unstructured.partition.auto.partition
supports aurl
kwarg, buturl
inUnstructuredLoader.__init__
is reserved for the server URL. Here we add aweb_url
kwarg that is passed to the partition kwargs: