Replies: 3 comments
-
SpecificationsLet's imagine we have the 2 pipelines as you suggested:
These 2 pipelines have been built with Veep builder. Today, it would be possible to build a new veeplet (AI pipeline) that would contain @name_of_the_veeplet_to_use by simple describing it in the chain definition
We could process such a veeplet in a different way than the one with prompts so a new and temporaray one would be created. This temp one would be decomposed in the following steps:
Presently, Veep would almost accept such a new pipeline but there are 2 problems:
This last point is not a problem because li veeplet is a one step process, but it would be in a pipeline with inter references). |
Beta Was this translation helpful? Give feedback.
-
Veeplets work like linux pipe. The previous temp pipeline could be viewed like this
LI want to have the whole previous content, so we should have an OUTPUT step which would concatenate each step:
We could imagine some things more clever because finally we are reinventing programming languages with import and scope statements and there surely exists an elegant solution but we just want a POC for the moment. |
Beta Was this translation helpful? Give feedback.
-
To give the ability to use any different input or output from previous generation outcomes, we could write the following:
To integrate an existing pipeline, use the following formalism:
where f is the name of the veeplet, x its input, and output its outcome. f must be unique at the end, when all elements are flatten. When this happens, the elements are prefixed by the surrounding element to avoid collision. When some elements are at the same level, like li above, they must be different. It may be li.1... li.3 but you could use li.first... li.next so you can reference them without ambiguity. These elements may be referenced. For example,
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Requirement
I have 2 veeplets (AI pipelines):
How can I mix them in a new pipeline called for example Case study + 5 LI that creates one case study and 5 LI posts based on the case study?
I don't want to reinvent the wheel of course and so I just want to reuse existing pipelines. I'd like to write something like that:
Beta Was this translation helpful? Give feedback.
All reactions