|
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <Version>0.11.0</Version>
- <Authors>Xbotter</Authors>
- <Company>SciSharp STACK</Company>
- <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
- <Copyright>MIT, SciSharp STACK $([System.DateTime]::UtcNow.ToString(yyyy))</Copyright>
- <RepositoryUrl>https://github.com/SciSharp/LLamaSharp</RepositoryUrl>
- <RepositoryType>git</RepositoryType>
- <PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&v=4</PackageIconUrl>
- <PackageTags>LLama, LLM, GPT, ChatGPT, kernel-memory, vector search, SciSharp</PackageTags>
- <Description>
- The integration of LLamaSharp and Microsoft kernel-memory. It could make it easy to support document search for LLamaSharp model inference.
- </Description>
- <PackageReleaseNotes>
- v0.11.0 updated the kernel-memory package and Fixed System.ArgumentException: EmbeddingMode must be true.
- </PackageReleaseNotes>
- <PackageLicenseExpression>MIT</PackageLicenseExpression>
- <PackageOutputPath>packages</PackageOutputPath>
- <Platforms>AnyCPU;x64;Arm64</Platforms>
- <PackageId>LLamaSharp.kernel-memory</PackageId>
- <Configurations>Debug;Release;GPU</Configurations>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="Microsoft.KernelMemory.Abstractions" Version="0.34.240313.1" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
- </ItemGroup>
-
- </Project>
|