We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4190cb commit 60daeccCopy full SHA for 60daecc
automation-api/lib/ai_eval_spreadsheet/wrapper.py
@@ -41,7 +41,9 @@ class AiEvalData:
41
}
42
43
44
-def get_ai_eval_spreadsheet(authorized_clients: AuthorizedClients, ai_eval_spreadsheet_id: str) -> Spreadsheet:
+def get_ai_eval_spreadsheet(
45
+ authorized_clients: AuthorizedClients, ai_eval_spreadsheet_id: str
46
+) -> Spreadsheet:
47
ai_eval_spreadsheet = authorized_clients.gc.open_by_key(ai_eval_spreadsheet_id)
48
return ai_eval_spreadsheet
49
@@ -73,7 +75,7 @@ def read_ai_eval_data(
73
75
row_schema=PromptVariation,
74
76
worksheet_name=sheet_names["prompt_variations"],
77
header_row_number=0,
- evaluate_formulas=False,
78
+ evaluate_formulas=True,
79
)
80
81
gen_ai_model_configs = GsheetsWorksheetEditor(
0 commit comments