CosaroLisa

Results 3 comments of CosaroLisa

@harvey1992 > @fschuh I updated the evolution file and generator file to allow custom prompts to be passed via arguments. Could you give a simple example of that ?

@dosu ``` TestsetGenerator( generator_llm=bedrock_model, critic_llm=bedrock_model, embeddings=bedrock_embeddings, docstore=docstore, prompts=[reasoning_question_prompt, multi_context_question_prompt] ) ``` I think passing prompts as argument in the TestsetGenerator constructor is not allowed as of now.

After consulting the source code in `ragas/testset/prompts.py`, I noticed that some metaprompt instructions specify not to use the above introductory expression, but not all of them—for example, the `seed_question_prompt` or...