create test project and basic model loading tests

This commit is contained in:
redthing1
2023-05-22 16:18:04 -07:00
committed by AT
parent 0cc86d19be
commit dec8546abe
4 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace Gpt4All.Tests
{
public static class Constants
{
public const string MODELS_BASE_DIR = "../../../models";
public const string LLAMA_MODEL_PATH = $"{MODELS_BASE_DIR}/ggml-gpt4all-l13b-snoozy.bin";
public const string GPTJ_MODEL_PATH = $"{MODELS_BASE_DIR}/ggml-gpt4all-j-v1.3-groovy.bin";
public const string MPT_MODEL_PATH = $"{MODELS_BASE_DIR}/ggml-mpt-7b-chat.bin";
}
}