rsobieski commited on
Commit
1488b1e
·
verified ·
1 Parent(s): 39863c3

Update agent.py

Browse files
Files changed (1) hide show
  1. agent.py +1 -1
agent.py CHANGED
@@ -9,7 +9,7 @@ from tools import TOOLS
9
  import pandas as pd
10
 
11
  # Load metadata from local jsonl
12
- QA_PATH = "/mnt/data/metadata.jsonl"
13
  qa_pairs = pd.read_json(QA_PATH, lines=True)
14
  qa_dict = {row["Question"].strip(): row["Final answer"].strip() for _, row in qa_pairs.iterrows()}
15
 
 
9
  import pandas as pd
10
 
11
  # Load metadata from local jsonl
12
+ QA_PATH = "metadata.jsonl"
13
  qa_pairs = pd.read_json(QA_PATH, lines=True)
14
  qa_dict = {row["Question"].strip(): row["Final answer"].strip() for _, row in qa_pairs.iterrows()}
15