Skip to content

Commit 150699f

Browse files
committed
Release v0.21.0
1 parent 627f7fa commit 150699f

File tree

11 files changed

+29
-10
lines changed

11 files changed

+29
-10
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>net6.0</TargetFramework>
44
<LangVersion>10.0</LangVersion>
55
<OutputPath>..\..\..\packages</OutputPath>
6-
<BotSharpVersion>0.20.0</BotSharpVersion>
6+
<BotSharpVersion>0.21.0</BotSharpVersion>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
</PropertyGroup>
99
</Project>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# The Open Source AI Agent Application Framework
22
## Connect LLMs to your existing application focused on your business
33

4-
[![Discord](https://img.shields.io/discord/1106946823282761851?label=Discord)](https://discord.gg/qRVm82fKTS)
4+
[![Discord](https://img.shields.io/discord/1106946823282761851?label=Discord)](https://discord.com/channels/1106946823282761851/1106947212459642991)
55
[![QQ群聊](https://img.shields.io/static/v1?label=QQ&message=群聊&color=brightgreen)](http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=sN9VVMwbWjs5L0ATpizKKxOcZdEPMrp8&authKey=RLDw41bLTrEyEgZZi%2FzT4pYk%2BwmEFgFcrhs8ZbkiVY7a4JFckzJefaYNW6Lk4yPX&noverify=0&group_code=985366726)
66
[![Join the chat at https://gitter.im/publiclab/publiclab](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/sci-sharp/community)
77
[![Apache 2.0](https://img.shields.io/hexpm/l/plug.svg)](https://raw.githubusercontent.com/Oceania2018/BotSharp/master/LICENSE)

docs/agent/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ Now we can update the prompt to the chatbot definition through the [Agent Update
3737

3838
![Alt text](assets/agent-update.png)
3939

40-
After the update is successful, the robot will have a system prompt, and the subsequent dialogue will interact with the user based on the background knowledge of the system prompt. So far, the creation of the Agent has been completed, but the real dialogue has not yet started. The following will continue to introduce the last step, the [Agent Conversation](conversation.md) part.
40+
After the update is successful, the robot will have a system prompt, and the subsequent dialogue will interact with the user based on the background knowledge of the system prompt. So far, the creation of the Agent has been completed, but the real dialogue has not yet started. The following will continue to introduce the last step, the [Agent Conversation](../conversation/intro.md) part.

docs/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,15 @@ The main documentation for the site is organized into the following sections:
5252

5353
agent/intro
5454
agent/router
55+
agent/hook
5556

5657
.. toctree::
5758
:maxdepth: 2
5859
:caption: Conversation
5960

6061
conversation/intro
6162
conversation/state
63+
conversation/hook
6264

6365
.. _integration-docs:
6466

99.9 KB
Loading

docs/quick-start/get-started.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,20 @@ Next, try to access the chat from `Open API`, we public our [Postman collection]
2020

2121
![Pizza Bot Starter](assets/PizzaBotSample4.png)
2222

23+
### Launch the UI
24+
25+
BotSharp has an official front-end project to be used in conjunction with the backend. The main function of this project is to allow developers to visualize various configurations of the backend.
26+
27+
```console
28+
git clone https://github.com/SciSharp/BotSharp-UI
29+
cd BotSharp-UI
30+
npm install --force
31+
npm run dev
32+
```
33+
34+
Access the http://localhost:5015/
35+
36+
![BotSharp UI Router](assets/BotSharp-UI-Router.png)
2337

2438
### Run in debug mode
2539

src/Infrastructure/BotSharp.Core/Plugins/PluginLoader.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using BotSharp.Abstraction.Plugins.Models;
22
using Microsoft.AspNetCore.Builder;
3-
using Microsoft.EntityFrameworkCore.Metadata.Internal;
43
using Microsoft.Extensions.Configuration;
54
using System.Drawing;
65
using System.IO;

src/Infrastructure/BotSharp.OpenAPI/BotSharp.OpenAPI.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
@@ -11,7 +11,7 @@
1111

1212
<ItemGroup>
1313
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
14-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.16" />
14+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.25" />
1515
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
1616
</ItemGroup>
1717

src/Plugins/BotSharp.Plugin.MongoStorage/BotSharp.Plugin.MongoStorage.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="MongoDB.Driver" Version="2.22.0" />
13+
<PackageReference Include="MongoDB.Driver" Version="2.23.1" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

src/Plugins/BotSharp.Plugin.WebDriver/BotSharp.Plugin.WebDriver.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
55
<Nullable>enable</Nullable>
6+
<LangVersion>$(LangVersion)</LangVersion>
7+
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
8+
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
9+
<GenerateDocumentationFile>$(GenerateDocumentationFile)</GenerateDocumentationFile>
610
</PropertyGroup>
711

812
<ItemGroup>

tests/BotSharp.Plugin.SemanticKernel.UnitTests/BotSharp.Plugin.SemanticKernel.UnitTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
1515
<PackageReference Include="Microsoft.SemanticKernel" Version="1.0.0-beta6" />
1616
<PackageReference Include="Moq" Version="4.20.70" />
17-
<PackageReference Include="xunit" Version="2.6.3" />
18-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.5">
17+
<PackageReference Include="xunit" Version="2.6.4" />
18+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
1919
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2020
<PrivateAssets>all</PrivateAssets>
2121
</PackageReference>

0 commit comments

Comments
 (0)