Merge pull request #147 from martindevans/llama2-7b-chat.gguf

Swapped to llama-7b-chat
This commit is contained in:
Martin Evans 2023-09-04 21:45:34 +01:00 committed by GitHub
commit 037472cc3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

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";
}
}

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>