-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
GraphIteratorNode and MergeAnswersNode #155
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
Conversation
Implemented GraphIteratorNode and MergeAnswersNode to create multiple istances of a graph and merge the scraped content from multiple pages
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.
why you do not use smart scraper graph?
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'm passing it inside the GraphIteratorNode
configuration with empty prompt and source since they are mandatory for a SmartScraper
. Inside GraphIteratorNode
they will be replaced correctly
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.
fix the example
🎉 This PR is included in version 0.9.0-beta.5 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 0.10.0-beta.1 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 0.10.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Two new nodes to create multiple instances of a graph and merge all the answers together in one.
It is possible to pass an instance of a graph inside the
GraphIterator
configuration dict and it will be iterated over an input list (in theSearchGraph
case it will be a list of urls).