You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

NativeInfo.cs 481 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace LLama.Native
  5. {
  6. internal class NativeInfo
  7. {
  8. internal static readonly int LLAMA_FILE_VERSION = 1;
  9. internal static readonly string LLAMA_FILE_MAGIC = "ggjt";
  10. internal static readonly string LLAMA_FILE_MAGIC_UNVERSIONED = "ggml";
  11. internal static readonly string LLAMA_SESSION_MAGIC = "ggsn";
  12. internal static readonly int LLAMA_SESSION_VERSION = 1;
  13. }
  14. }