rchrdgwr commited on
Commit
918fcc8
1 Parent(s): dc4de02

added data/ to file path for csv

Browse files
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. objection_eval.py +1 -1
Dockerfile CHANGED
@@ -8,4 +8,4 @@ COPY --chown=user . $HOME/app
8
  COPY ./requirements.txt ~/app/requirements.txt
9
  RUN pip install -r requirements.txt
10
  COPY . .
11
- CMD ["chainlit", "run", "app.py", "--port", "7860"]
 
8
  COPY ./requirements.txt ~/app/requirements.txt
9
  RUN pip install -r requirements.txt
10
  COPY . .
11
+ CMD ["chainlit", "run", "app_am.py", "--port", "7860"]
objection_eval.py CHANGED
@@ -42,7 +42,7 @@ def process_salesbud_file(file_path: str) -> List[Tuple[ObjectionInput, Objectio
42
  print(f"{datetime.now()}: Processing file: salesbud_examples.csv")
43
 
44
  # Read the CSV file into a DataFrame
45
- df = pd.read_csv('salesbud_examples.csv')
46
 
47
  # List to hold the processed objections
48
  examples = [] # List to hold examples
 
42
  print(f"{datetime.now()}: Processing file: salesbud_examples.csv")
43
 
44
  # Read the CSV file into a DataFrame
45
+ df = pd.read_csv('data/salesbud_examples.csv')
46
 
47
  # List to hold the processed objections
48
  examples = [] # List to hold examples