Design a better interface to allow Mixed type flows #277
Replies: 3 comments 1 reply
-
Hi Gabriel, This is a great idea. Is there a simple way to extend this design to support two way conversations, for example: two models running a debate? Talking about holistic things, how do you feel about the growth on langflow and specifically about how much versatility of langchain can be captured by langflow? Are we hitting the limits already that we need dedicated component like Connectors? or if Connectors is not something that dedicated and may be we should implement it as part of langchain and keep the simplicity of only rendering flows in langflow without heavy dedicated logic? Looking forward to your thoughts! Thanks |
Beta Was this translation helpful? Give feedback.
-
Hi Gabriel, Looking forward to this feature, is this a priority task being pursued actively? Thanks, |
Beta Was this translation helpful? Give feedback.
-
Hey! Thanks for sharing your question here. I'm sorry for not getting back to you sooner. |
Beta Was this translation helpful? Give feedback.
-
The objective of a flow is to build one graph that in the end turns into a Chain or AgentExecutor.
It would be really interesting to have a way to have multiple steps.
For example:
This would require the graphs to be directional but the nodes that make the chain should still be composition nodes.
A solution would be to create a different type of node which is a Connector. These Connectors would pass information between Composed nodes.
Essentially, composed nodes could be seen as one entity and nodes that have a certain output could be connected to Connectors.
A few requirements I can think of right now for this work:
The flow then becomes sort of a stack starting at the Chat, going to an output which will be the input of a flow, which will output to a connector and that will output to another flow, etc.
Beta Was this translation helpful? Give feedback.
All reactions