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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\LLama\LLamaSharp.Runtime.targets" />
  3. <PropertyGroup>
  4. <OutputType>Exe</OutputType>
  5. <TargetFramework>net6.0</TargetFramework>
  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. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  14. <NoWarn>1701;1702;8604</NoWarn>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  17. <NoWarn>1701;1702;8604</NoWarn>
  18. </PropertyGroup>
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  20. <NoWarn>1701;1702;8604</NoWarn>
  21. </PropertyGroup>
  22. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  23. <NoWarn>1701;1702;8604</NoWarn>
  24. </PropertyGroup>
  25. <ItemGroup>
  26. <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
  27. <PackageReference Include="Microsoft.SemanticKernel" Version="1.0.0-beta1" />
  28. <PackageReference Include="Spectre.Console" Version="0.47.0" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <ProjectReference Include="..\LLama.KernelMemory\LLamaSharp.KernelMemory.csproj" />
  32. <ProjectReference Include="..\LLama.SemanticKernel\LLamaSharp.SemanticKernel.csproj" />
  33. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <None Update="Assets\chat-with-bob.txt">
  37. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  38. </None>
  39. <None Update="Assets\chat.txt">
  40. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  41. </None>
  42. <None Update="Assets\alpaca.txt">
  43. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  44. </None>
  45. <None Update="Assets\chat-with-vicuna-v0.txt">
  46. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  47. </None>
  48. <None Update="Assets\chat-with-vicuna-v1.txt">
  49. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  50. </None>
  51. <None Update="Assets\dan.txt">
  52. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  53. </None>
  54. <None Update="Assets\json.gbnf">
  55. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  56. </None>
  57. <None Update="Assets\reason-act.txt">
  58. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  59. </None>
  60. <None Update="Assets\sample-SK-Readme.pdf">
  61. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  62. </None>
  63. </ItemGroup>
  64. </Project>