1 /* 2 * Copyright (c) Meta Platforms, Inc. and affiliates. 3 * All rights reserved. 4 * 5 * This source code is licensed under the BSD-style license found in the 6 * LICENSE file in the root directory of this source tree. 7 */ 8 9 package com.example.executorchllamademo; 10 11 public enum ModelType { 12 LLAMA_3, 13 LLAMA_3_1, 14 LLAMA_3_2, 15 LLAVA_1_5, 16 LLAMA_GUARD_3, 17 } 18