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.1 kB

123456789101112131415161718192021222324252627282930
  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.3.2" />
  13. <PackageReference Include="xunit" Version="2.4.2" />
  14. <PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
  15. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  16. <PrivateAssets>all</PrivateAssets>
  17. </PackageReference>
  18. <PackageReference Include="coverlet.collector" Version="3.1.2">
  19. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  20. <PrivateAssets>all</PrivateAssets>
  21. </PackageReference>
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  25. </ItemGroup>
  26. </Project>

C#/.NET上易用的LLM高性能推理框架,支持LLaMA和LLaVA系列模型。