in genai-on-vertex-ai/gemini/evals_playbook/utils/evals_playbook.py [0:0]
def get_table_name_keys(table_class):
if table_class not in BQ_TABLE_MAP:
raise ValueError(f"Invalid table class '{table_class}'. Supported {list(BQ_TABLE_MAP.keys())}")
table = BQ_TABLE_MAP[table_class]
return table["table_name"], table["keys"]