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 2.7 kB

2 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0</TargetFrameworks>
  4. <RootNamespace>LLama</RootNamespace>
  5. <Nullable>enable</Nullable>
  6. <LangVersion>10</LangVersion>
  7. <Platforms>AnyCPU;x64;Arm64</Platforms>
  8. <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
  9. <Version>0.11.0</Version>
  10. <Authors>Rinne, Martin Evans, jlsantiago and all the other contributors in https://github.com/SciSharp/LLamaSharp/graphs/contributors.</Authors>
  11. <Company>SciSharp STACK</Company>
  12. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  13. <Copyright>MIT, SciSharp STACK $([System.DateTime]::UtcNow.ToString(yyyy))</Copyright>
  14. <RepositoryUrl>https://github.com/SciSharp/LLamaSharp</RepositoryUrl>
  15. <RepositoryType>git</RepositoryType>
  16. <PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
  17. <PackageTags>LLama, LLM, GPT, ChatGPT, NLP, AI, Chat Bot, SciSharp</PackageTags>
  18. <Description>
  19. LLamaSharp is a cross-platform library to run 🦙LLaMA/LLaVA model (and others) in your local device.
  20. Based on [llama.cpp](https://github.com/ggerganov/llama.cpp), inference with LLamaSharp is efficient on both CPU and GPU.
  21. With the higher-level APIs and RAG support, it's convenient to deploy LLM (Large Language Model) in your application with LLamaSharp.
  22. </Description>
  23. <PackageReleaseNotes>
  24. LLamaSharp 0.11.0 added support for multi-modal (LLaVA), improved the BatchedExecutor and added state management of `ChatSession`.
  25. </PackageReleaseNotes>
  26. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  27. <PackageOutputPath>packages</PackageOutputPath>
  28. <Platforms>AnyCPU;x64;Arm64</Platforms>
  29. <PackageId>LLamaSharp</PackageId>
  30. <Configurations>Debug;Release;GPU</Configurations>
  31. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  32. </PropertyGroup>
  33. <PropertyGroup>
  34. <PackageReadmeFile>README.md</PackageReadmeFile>
  35. <GenerateDocumentationFile>True</GenerateDocumentationFile>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <None Include="..\README.md" Pack="true" PackagePath="\" />
  39. </ItemGroup>
  40. <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
  41. <PackageReference Include="IsExternalInit" Version="1.0.3" PrivateAssets="all" />
  42. <PackageReference Include="System.Memory" Version="4.5.5" PrivateAssets="all" />
  43. <PackageReference Include="System.Linq.Async" Version="6.0.1" />
  44. <PackageReference Include="System.Text.Json" Version="8.0.3" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
  48. </ItemGroup>
  49. </Project>