Constants.swift 1.3 KB

123456789101112131415161718192021222324252627282930
  1. // Copyright 2025 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. public enum FirebaseAppNames {
  15. /// The name, or a substring of the name, of Firebase apps where App Check is not configured.
  16. public static let appCheckNotConfigured = "app-check-not-configured"
  17. /// The name of a Firebase app with no billing account (i.e., the "Spark" plan).
  18. public static let spark = "spark"
  19. }
  20. public enum ModelNames {
  21. public static let gemini2Flash = "gemini-2.0-flash-001"
  22. public static let gemini2FlashLite = "gemini-2.0-flash-lite-001"
  23. public static let gemini2FlashPreviewImageGeneration = "gemini-2.0-flash-preview-image-generation"
  24. public static let gemini2_5_Flash = "gemini-2.5-flash"
  25. public static let gemini2_5_Pro = "gemini-2.5-pro"
  26. public static let gemma3_4B = "gemma-3-4b-it"
  27. }