AppUtils.java 555 B

1234567891011121314
  1. package com.example.llamaandroiddemo;
  2. public class AppUtils {
  3. // Generation Mode
  4. public static final int CONVERSATION_HISTORY_MESSAGE_LOOKBACK = 1;
  5. // Note: This is an example project to demonstrate E2E flow.
  6. // You should NOT use/store API key directly on client
  7. // Exposing your API key in client-side environments allows malicious users to take
  8. // that key and make requests on your behalf. Requests should always be routed through
  9. // your own backend server where you can keep your API key secure.
  10. public static final String API_KEY = "";
  11. }