BotSharp/src/Infrastructure/BotSharp.Core/BotSharp.Core.csproj

96 lines
4.2 KiB
XML
Raw Normal View History

2023-07-22 11:35:30 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2017-12-18 05:30:20 +00:00
2020-09-07 10:17:58 +00:00
<PropertyGroup>
2023-05-20 21:31:31 +00:00
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>$(LangVersion)</LangVersion>
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
2020-09-07 10:17:58 +00:00
</PropertyGroup>
2018-04-02 22:42:11 +00:00
2017-12-18 05:30:20 +00:00
<PropertyGroup>
2018-05-08 04:04:59 +00:00
<Authors>Haiping Chen</Authors>
2019-02-23 15:08:56 +00:00
<Company>SciSharp STACK</Company>
2023-09-24 16:20:02 +00:00
<Product>LL Application Framework</Product>
2020-09-07 10:17:58 +00:00
<Description>
2023-09-24 16:20:02 +00:00
Open source LLM application framework to build scalable, flexible and robust AI system.
2020-09-07 10:17:58 +00:00
</Description>
2019-02-23 15:08:56 +00:00
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/SciSharp/BotSharp</RepositoryUrl>
2023-09-24 16:20:02 +00:00
<PackageTags>Chatbot, Bot, LLM, AI, ChatGPT, OpenAI</PackageTags>
2018-12-30 01:15:09 +00:00
<PackageReleaseNotes>Support dialogue status tracking.</PackageReleaseNotes>
2018-05-27 15:35:16 +00:00
<Copyright>Since 2018 Haiping Chen</Copyright>
2019-02-23 15:08:56 +00:00
<PackageProjectUrl>https://github.com/SciSharp/BotSharp</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/SciSharp/BotSharp/master/docs/static/logos/BotSharp.png</PackageIconUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/SciSharp/BotSharp/master/LICENSE</PackageLicenseUrl>
2023-06-08 04:17:41 +00:00
<PackageIcon>Icon.png</PackageIcon>
2023-07-21 15:15:30 +00:00
<Nullable>enable</Nullable>
2017-12-18 05:30:20 +00:00
</PropertyGroup>
2018-06-18 22:15:32 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG</DefineConstants>
2023-07-21 15:15:30 +00:00
<NoWarn>1701;1702</NoWarn>
2018-06-22 01:10:20 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;</DefineConstants>
2023-07-21 15:15:30 +00:00
<NoWarn>1701;1702</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<NoWarn>1701;1702</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<NoWarn>1701;1702</NoWarn>
2018-06-18 22:15:32 +00:00
</PropertyGroup>
2024-01-11 14:03:25 +00:00
<ItemGroup>
<None Remove="data\agents\01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a\agent.json" />
<None Remove="data\agents\01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a\instruction.liquid" />
<None Remove="data\agents\01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a\templates\next_step_prompt.hf_planner.liquid" />
<None Remove="data\agents\01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a\templates\next_step_prompt.liquid" />
<None Remove="data\agents\01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a\templates\response_with_function.liquid" />
<None Remove="data\agents\01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a\templates\welcome.liquid" />
</ItemGroup>
<ItemGroup>
<Content Include="data\agents\01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a\agent.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="data\agents\01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a\instruction.liquid">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="data\agents\01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a\templates\next_step_prompt.hf_planner.liquid">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="data\agents\01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a\templates\next_step_prompt.liquid">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="data\agents\01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a\templates\response_with_function.liquid">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="data\agents\01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a\templates\welcome.liquid">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
2023-06-08 04:17:41 +00:00
<ItemGroup>
<None Include="..\..\..\arts\Icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
2020-09-07 10:17:58 +00:00
<ItemGroup>
2023-10-11 04:11:06 +00:00
<PackageReference Include="Aspects.Cache" Version="2.0.4" />
2023-09-22 20:38:58 +00:00
<PackageReference Include="Colorful.Console" Version="1.2.15" />
2023-06-07 00:59:32 +00:00
<PackageReference Include="EntityFrameworkCore.BootKit" Version="6.2.1" />
2023-10-02 20:40:15 +00:00
<PackageReference Include="Fluid.Core" Version="2.5.0" />
</ItemGroup>
2023-05-20 21:31:31 +00:00
<ItemGroup>
<ProjectReference Include="..\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
</ItemGroup>
2017-12-18 05:30:20 +00:00
</Project>