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

12345678910111213141516171819202122232425262728293031323334353637
  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.11.0</Version>
  7. <Authors>Xbotter</Authors>
  8. <Company>SciSharp STACK</Company>
  9. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  10. <Copyright>MIT, SciSharp STACK $([System.DateTime]::UtcNow.ToString(yyyy))</Copyright>
  11. <RepositoryUrl>https://github.com/SciSharp/LLamaSharp</RepositoryUrl>
  12. <RepositoryType>git</RepositoryType>
  13. <PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
  14. <PackageTags>LLama, LLM, GPT, ChatGPT, kernel-memory, vector search, SciSharp</PackageTags>
  15. <Description>
  16. The integration of LLamaSharp and Microsoft kernel-memory. It could make it easy to support document search for LLamaSharp model inference.
  17. </Description>
  18. <PackageReleaseNotes>
  19. v0.11.0 updated the kernel-memory package and Fixed System.ArgumentException: EmbeddingMode must be true.
  20. </PackageReleaseNotes>
  21. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  22. <PackageOutputPath>packages</PackageOutputPath>
  23. <Platforms>AnyCPU;x64;Arm64</Platforms>
  24. <PackageId>LLamaSharp.kernel-memory</PackageId>
  25. <Configurations>Debug;Release;GPU</Configurations>
  26. </PropertyGroup>
  27. <ItemGroup>
  28. <PackageReference Include="Microsoft.KernelMemory.Abstractions" Version="0.34.240313.1" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  32. </ItemGroup>
  33. </Project>