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.

LLama.Unittest.csproj 1.7 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\LLama\LLamaSharp.Runtime.targets" />
  3. <PropertyGroup>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <RootNamespace>LLama.Unittest</RootNamespace>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <Platforms>AnyCPU;x64</Platforms>
  8. <Nullable>enable</Nullable>
  9. <IsPackable>false</IsPackable>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
  13. <PackageReference Include="System.Linq.Async" Version="6.0.1" />
  14. <PackageReference Include="xunit" Version="2.6.1" />
  15. <PackageReference Include="xunit.runner.visualstudio" Version="2.5.3">
  16. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  17. <PrivateAssets>all</PrivateAssets>
  18. </PackageReference>
  19. <PackageReference Include="coverlet.collector" Version="6.0.0">
  20. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  21. <PrivateAssets>all</PrivateAssets>
  22. </PackageReference>
  23. </ItemGroup>
  24. <Target Name="DownloadContentFiles" BeforeTargets="Build">
  25. <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">
  26. </DownloadFile>
  27. </Target>
  28. <ItemGroup>
  29. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Folder Include="Models\" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <None Update="Models\llama-2-7b-chat.Q4_0.gguf">
  36. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  37. </None>
  38. </ItemGroup>
  39. </Project>