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.KernelMemory.csproj 1.6 kB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <Version>0.7.1</Version>
  7. <Version>0.8.0</Version>
  8. <Authors>Xbotter</Authors>
  9. <Company>SciSharp STACK</Company>
  10. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  11. <Copyright>MIT, SciSharp STACK $([System.DateTime]::UtcNow.ToString(yyyy))</Copyright>
  12. <RepositoryUrl>https://github.com/SciSharp/LLamaSharp</RepositoryUrl>
  13. <RepositoryType>git</RepositoryType>
  14. <PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
  15. <PackageTags>LLama, LLM, GPT, ChatGPT, kernel-memory, vector search, SciSharp</PackageTags>
  16. <Description>
  17. The integration of LLamaSharp and Microsoft kernel-memory. It could make it easy to support document search for LLamaSharp model inference.
  18. </Description>
  19. <PackageReleaseNotes>
  20. Support integration with kernel-memory
  21. </PackageReleaseNotes>
  22. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  23. <PackageOutputPath>packages</PackageOutputPath>
  24. <Platforms>AnyCPU;x64;Arm64</Platforms>
  25. <PackageId>LLamaSharp.kernel-memory</PackageId>
  26. <Configurations>Debug;Release;GPU</Configurations>
  27. </PropertyGroup>
  28. <ItemGroup>
  29. <PackageReference Include="Microsoft.KernelMemory.Abstractions" Version="0.12.231123.1-preview" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  33. </ItemGroup>
  34. </Project>