We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I configured to override the URL parameter.
Then using the following body code to override it,
body: JSON.stringify({ question: 'start', overrideConfig: { nodes: { cheerioWebScraper_0: { url: 'https://google.com' } } }, })
But it only uses the URL I set it on the canvas
What is the correct way to override this?
The text was updated successfully, but these errors were encountered:
Have you turn on the override config enable? https://docs.flowiseai.com/using-flowise/api#override-config
Sorry, something went wrong.
Yes I did.
This feature is not well documented. I am adding details here so that others might be find it useful.
In order to override the values, this is how I ended up using.
body: JSON.stringify({ question: 'start', overrideConfig: { url: { cheerioWebScraper_0: $('Filter').item.json.whitePaperUrl, cheerioWebScraper_1: $('Filter').item.json.websiteUrl, } }, })
No branches or pull requests
I configured to override the URL parameter.
Then using the following body code to override it,
But it only uses the URL I set it on the canvas
What is the correct way to override this?
The text was updated successfully, but these errors were encountered: