You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When launching the CLI, it should be possible to specify a sequence of tasks to execute sequentially (maybe a graph of tasks?).
For instance, we currently have SummarizeMultiplePersonas as a task, which is in itself a collection of calls to Simple, followed by a SummarizeResponses.
In #36 we want to implement a personas selector. The idea would be to run SelectPersonas, then QueryMultiplePersonas with the returned list, and finally SummarizeResponses.
We should be able to get rid of SummarizeMultiplePersonas and replace it with QueryMultiplePersonas,SummarizeResponses.
The goal is to increase reusability while reducing the need for tasks that are composite of other tasks.
The text was updated successfully, but these errors were encountered:
When launching the CLI, it should be possible to specify a sequence of tasks to execute sequentially (maybe a graph of tasks?).
For instance, we currently have
SummarizeMultiplePersonas
as a task, which is in itself a collection of calls toSimple
, followed by aSummarizeResponses
.In #36 we want to implement a personas selector. The idea would be to run
SelectPersonas
, thenQueryMultiplePersonas
with the returned list, and finallySummarizeResponses
.We should be able to get rid of
SummarizeMultiplePersonas
and replace it withQueryMultiplePersonas,SummarizeResponses
.The goal is to increase reusability while reducing the need for tasks that are composite of other tasks.
The text was updated successfully, but these errors were encountered: