[FEATURE] Ability to load the json file exported by Flowise and run the chain contained in it
Describe the feature you'd like Flowise allow you to export the workflow generated as a json file. However there is no way to dynamically load the json file and run it. The only way to integrate with flowise is to call the api endpoint. It would be great if it were possible to load and run the json file dynamically from python. Something like
flow = from_json(file_name, parameters=param_dict)
flow.run(inputs)
unfortunately that won't be possible unless we release our python sdk/library
@HenryHengZJ would it possible to have this feature in js? (or is it already implemented)
Nope we don't have it yet, we will have to develop our own JS sdk
I can't wait to run the flows as servers or libs.
I'm thinking that if we have some flow JSON files and the Python scripts corresponding to the JSON files, maybe we can create some bots to convert them?
there is an effort by community - https://github.com/FlowiseAI/Flowise/discussions/2041