__main__.py 276 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 fire
  4. from llama_recipes.inference.inference import main
  5. if __name__ == "__main__":
  6. fire.Fire(main)