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.Examples.csproj 1.3 kB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. <Platforms>AnyCPU;x64</Platforms>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <None Update="Assets\chat-with-bob.txt">
  14. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  15. </None>
  16. <None Update="Assets\chat.txt">
  17. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  18. </None>
  19. <None Update="Assets\alpaca.txt">
  20. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  21. </None>
  22. <None Update="Assets\chat-with-vicuna-v0.txt">
  23. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  24. </None>
  25. <None Update="Assets\chat-with-vicuna-v1.txt">
  26. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  27. </None>
  28. <None Update="Assets\dan.txt">
  29. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  30. </None>
  31. <None Update="Assets\reason-act.txt">
  32. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  33. </None>
  34. </ItemGroup>
  35. </Project>

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