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.

LLama.Examples.csproj 3.6 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\LLama\LLamaSharp.Runtime.targets" />
  3. <PropertyGroup>
  4. <OutputType>Exe</OutputType>
  5. <TargetFrameworks>net6.0;net8.0</TargetFrameworks>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <Nullable>enable</Nullable>
  8. <Platforms>AnyCPU;x64</Platforms>
  9. <!-- Set IncludeBuiltInRuntimes to false to include your own runtime libraries and not link the defaults -->
  10. <IncludeBuiltInRuntimes>true</IncludeBuiltInRuntimes>
  11. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  12. <LangVersion>12</LangVersion>
  13. <NoWarn>1701;1702;8604;SKEXP0001;SKEXP0050;SKEXP0052;SKEXP0003</NoWarn>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
  17. <PackageReference Include="Microsoft.KernelMemory.Core" Version="0.34.240313.1" />
  18. <PackageReference Include="Microsoft.SemanticKernel" Version="1.6.2" />
  19. <PackageReference Include="Microsoft.SemanticKernel.Plugins.Memory" Version="1.6.2-alpha" />
  20. <PackageReference Include="NAudio" Version="2.2.1" />
  21. <PackageReference Include="Spectre.Console" Version="0.48.0" />
  22. <PackageReference Include="Spectre.Console.ImageSharp" Version="0.48.0" />
  23. <PackageReference Include="Whisper.net" Version="1.5.0" />
  24. <PackageReference Include="Whisper.net.Runtime" Version="1.5.0" />
  25. <PackageReference Include="Whisper.net.Runtime.Clblast" Version="1.5.0" />
  26. <PackageReference Include="Whisper.net.Runtime.CoreML" Version="1.5.0" />
  27. <PackageReference Include="Whisper.net.Runtime.Cublas" Version="1.5.0" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <ProjectReference Include="..\LLama.KernelMemory\LLamaSharp.KernelMemory.csproj" />
  31. <ProjectReference Include="..\LLama.SemanticKernel\LLamaSharp.SemanticKernel.csproj" />
  32. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <None Update="Assets\chat-with-bob.json">
  36. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  37. </None>
  38. <None Update="Assets\chat-with-kunkun-chinese.json">
  39. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  40. </None>
  41. <None Update="Assets\chat-with-bob.txt">
  42. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  43. </None>
  44. <None Update="Assets\chat.txt">
  45. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  46. </None>
  47. <None Update="Assets\alpaca.txt">
  48. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  49. </None>
  50. <None Update="Assets\chat-with-vicuna-v0.txt">
  51. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  52. </None>
  53. <None Update="Assets\chat-with-vicuna-v1.txt">
  54. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  55. </None>
  56. <None Update="Assets\dan.txt">
  57. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  58. </None>
  59. <None Update="Assets\json.gbnf">
  60. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  61. </None>
  62. <None Update="Assets\reason-act.txt">
  63. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  64. </None>
  65. <None Update="Assets\sample-KM-Readme.pdf">
  66. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  67. </None>
  68. <None Update="Assets\sample-SK-Readme.pdf">
  69. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  70. </None>
  71. <None Update="Assets\chat-with-kunkun-chinese.txt">
  72. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  73. </None>
  74. </ItemGroup>
  75. </Project>