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.

LLamaSharp.csproj 857 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
  4. <RootNamespace>LLama</RootNamespace>
  5. <Nullable>enable</Nullable>
  6. <LangVersion>10</LangVersion>
  7. <Platforms>AnyCPU;x64</Platforms>
  8. <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
  9. </PropertyGroup>
  10. <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
  11. <PackageReference Include="IsExternalInit" Version="1.0.3" PrivateAssets="all" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
  15. <PackageReference Include="Serilog" Version="3.0.0-dev-01998" />
  16. <PackageReference Include="Serilog.Extensions.Logging.File" Version="3.0.1-dev-00077" />
  17. <PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
  18. </ItemGroup>
  19. </Project>

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

Contributors (1)