chat_utils.py 309 B

123456789
  1. # Copyright (c) Meta Platforms, Inc. and affiliates.
  2. # This software may be used and distributed according to the terms of the Llama 2 Community License Agreement.
  3. import json
  4. def read_dialogs_from_file(file_path):
  5. with open(file_path, 'r') as file:
  6. dialogs = json.load(file)
  7. return dialogs