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.4 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  13. <NoWarn>1701;1702;8604</NoWarn>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  16. <NoWarn>1701;1702;8604</NoWarn>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  19. <NoWarn>1701;1702;8604</NoWarn>
  20. </PropertyGroup>
  21. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  22. <NoWarn>1701;1702;8604</NoWarn>
  23. </PropertyGroup>
  24. <ItemGroup>
  25. <PackageReference Include="Microsoft.SemanticKernel" Version="0.21.230828.2-preview" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\LLama.SemanticKernel\LLamaSharp.SemanticKernel.csproj" />
  29. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <None Update="Assets\chat-with-bob.txt">
  33. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  34. </None>
  35. <None Update="Assets\chat.txt">
  36. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  37. </None>
  38. <None Update="Assets\alpaca.txt">
  39. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  40. </None>
  41. <None Update="Assets\chat-with-vicuna-v0.txt">
  42. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  43. </None>
  44. <None Update="Assets\chat-with-vicuna-v1.txt">
  45. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  46. </None>
  47. <None Update="Assets\dan.txt">
  48. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  49. </None>
  50. <None Update="Assets\json.gbnf">
  51. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  52. </None>
  53. <None Update="Assets\reason-act.txt">
  54. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  55. </None>
  56. </ItemGroup>
  57. </Project>