Browse Source

Swapped to llama-7b-chat

tags/v0.5.1
Martin Evans 2 years ago
parent
commit
821d7f615e
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      LLama.Unittest/Constants.cs
  2. +2
    -2
      LLama.Unittest/LLama.Unittest.csproj

+ 1
- 1
LLama.Unittest/Constants.cs View File

@@ -2,6 +2,6 @@
{
internal static class Constants
{
public static string ModelPath = "Models/llama-2-7b.q4_0.gguf";
public static string ModelPath = "Models/llama-2-7b-chat.Q4_0.gguf";
}
}

+ 2
- 2
LLama.Unittest/LLama.Unittest.csproj View File

@@ -24,7 +24,7 @@
</ItemGroup>

<Target Name="DownloadContentFiles" BeforeTargets="Build">
<DownloadFile SourceUrl="https://huggingface.co/narrative-bi/Llama-2-7B-GGUF/resolve/main/llama-2-7b.q4_0.gguf" DestinationFolder="Models" DestinationFileName="llama-2-7b.q4_0.gguf" SkipUnchangedFiles="true">
<DownloadFile SourceUrl="https://huggingface.co/TheBloke/Llama-2-7b-Chat-GGUF/resolve/main/llama-2-7b-chat.Q4_0.gguf" DestinationFolder="Models" DestinationFileName="llama-2-7b-chat.Q4_0.gguf" SkipUnchangedFiles="true">
</DownloadFile>
</Target>

@@ -37,7 +37,7 @@
</ItemGroup>

<ItemGroup>
<None Update="Models\llama-2-7b.q4_0.gguf">
<None Update="Models\llama-2-7b-chat.Q4_0.gguf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>


Loading…
Cancel
Save