in evaluation_pipeline/retrieval.py [0:0]
def load_history_in_db(db, browsing_history):
db.execute('''CREATE TABLE IF NOT EXISTS search_data (
url TEXT,
title TEXT,
description TEXT,
combined_text TEXT
)
''')
for idx, row in browsing_history.iterrows():
db.execute("""