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
Too many parameters are shared between the different generation steps. It would be more convenient to use a configuration file to define all the steps and run them at once.
The text was updated successfully, but these errors were encountered:
The configuration file describes how an Expe will go from one step to another, in which order.
Thus, the configuration file is made of the 3 main blocks :
an Expe file
a dictionary of Steps
a workflow, an ordered list of Steps
Expe file : a string to the Expe file
Each Step is defined as follows:
1 TextGenerator
export parameters (json, html, spreadsheet)
Each TextGenerator comprises:
a Prompter
one or several LLMs - LLMs can be defined as classes or names - if defined as names, they are instances of LiteLLM
a set of parameters (overwrite, start_from, missing_only)
Below is an example of a configuration file with 3 steps, AnswerGen, FactsGen and EvalGen:
Too many parameters are shared between the different generation steps. It would be more convenient to use a configuration file to define all the steps and run them at once.
The text was updated successfully, but these errors were encountered: