We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0375a8 commit 7331eefCopy full SHA for 7331eef
app/core/prompt_templates.py
@@ -572,8 +572,7 @@ def get_freeform_eval_prompt(model_id: str,
572
examples_str = PromptHandler.format_examples_eval(examples)
573
574
elif examples == [] or examples == None:
575
- examples_str = PromptHandler.format_examples_eval(USE_CASE_CONFIGS_EVALS[use_case].default_examples)
576
-
+ examples_str = str(USE_CASE_CONFIGS_EVALS[use_case].default_examples)
577
base_prompt = """ You are a brilliant judge on evaluating a set of data with fields and corresponding values
578
Follow the given instructions to understand the structure of given data and evaluate it based on parameters defined for you."""
579
final_instruction = f"""data row: {row}
0 commit comments