Skip to content

Commit 3df0565

Browse files
committed
Bump version to v0.13.0.
1 parent 15e8bb0 commit 3df0565

File tree

5 files changed

+26
-12
lines changed

5 files changed

+26
-12
lines changed

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = '0.12'
67+
version = '0.13'
6868
# The full version, including alpha/beta/rc tags.
69-
release = '0.12.0'
69+
release = '0.13.0'
7070

7171
# The language for content autogenerated by Sphinx. Refer to documentation
7272
# for a list of supported languages.

docs/quick-start/get-started.md

+18-6
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,30 @@
44

55
In order to allow developers to experience the convenience of BotSharp as quickly as possible, we have designed a basic sample project PizzaBot. This example allows you to run it quickly on your local machine. This example requires `llama-2` quantized model downloaded with `gguf` format if you want to run locally.
66

7+
### Run in command line
8+
79
```console
810
git clone https://github.com/SciSharp/BotSharp
11+
cd BotSharp
12+
dotnet run --project .\src\WebStarter\WebStarter.csproj -p SolutionName=PizzaBot
913
```
1014

11-
Double click `PizzaBot` to start the solution.
12-
![Pizza Bot](assets/PizzaBotSample1.png)
13-
14-
Hit `WebStarter` to run it in Debug mode.
15-
![Pizza Bot Starter](assets/PizzaBotSample2.png)
16-
1715
Here you go, you will see this running screen.
16+
1817
![Pizza Bot Starter](assets/PizzaBotSample3.png)
1918

2019
Next, try to access the chat from `Open API`, we public our [Postman collection](https://www.postman.com/orange-flare-634868/workspace/botsharp/collection/1346299-d1a31c49-825d-4449-bdc8-936c66ff6bfd). Remember to set the environment as `localhost`.
20+
2121
![Pizza Bot Starter](assets/PizzaBotSample4.png)
22+
23+
24+
### Run in debug mode
25+
26+
If you have Visual Studio installed, you can run it in debug mode.
27+
Double click `PizzaBot` to start the solution.
28+
29+
![Pizza Bot](assets/PizzaBotSample1.png)
30+
31+
Hit `WebStarter` to run it in Debug mode, or you can start from command line
32+
33+
![Pizza Bot Starter](assets/PizzaBotSample2.png)

src/WebStarter/WebStarter.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,14 @@
5252
<ItemGroup Condition="$(SolutionName)==BotSharp">
5353
<ProjectReference Include="..\Infrastructure\BotSharp.Core\BotSharp.Core.csproj" />
5454
<ProjectReference Include="..\Infrastructure\BotSharp.OpenAPI\BotSharp.OpenAPI.csproj" />
55+
<ProjectReference Include="..\Plugins\BotSharp.Plugin.MongoStorage\BotSharp.Plugin.MongoStorage.csproj" />
5556
<ProjectReference Include="..\Plugins\BotSharp.Plugin.AzureOpenAI\BotSharp.Plugin.AzureOpenAI.csproj" />
5657
<ProjectReference Include="..\Plugins\BotSharp.Plugin.ChatbotUI\BotSharp.Plugin.ChatbotUI.csproj" />
5758
<ProjectReference Include="..\Plugins\BotSharp.Plugin.HuggingFace\BotSharp.Plugin.HuggingFace.csproj" />
5859
<ProjectReference Include="..\Plugins\BotSharp.Plugin.KnowledgeBase\BotSharp.Plugin.KnowledgeBase.csproj" />
5960
<ProjectReference Include="..\Plugins\BotSharp.Plugin.LLamaSharp\BotSharp.Plugin.LLamaSharp.csproj" />
6061
<ProjectReference Include="..\Plugins\BotSharp.Plugin.MetaAI\BotSharp.Plugin.MetaAI.csproj" />
61-
<ProjectReference Include="..\Plugins\BotSharp.Plugin.MongoStorage\BotSharp.Plugin.MongoStorage.csproj" />
62+
<ProjectReference Include="..\Plugins\BotSharp.Plugin.MetaMessenger\BotSharp.Plugin.MetaMessenger.csproj" />
6263
<ProjectReference Include="..\Plugins\BotSharp.Plugin.PaddleSharp\BotSharp.Plugin.PaddleSharp.csproj" />
6364
<ProjectReference Include="..\Plugins\BotSharp.Plugin.Qdrant\BotSharp.Plugin.Qdrant.csproj" />
6465
<ProjectReference Include="..\Plugins\BotSharp.Plugin.RoutingSpeeder\BotSharp.Plugin.RoutingSpeeder.csproj" />
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "Ordering",
3-
"description": "Make pizza order according to user's preference.",
3+
"description": "Place new pizza order or inquiry existed order.",
44
"createdDateTime": "2023-07-26T02:29:25.123224Z",
55
"updatedDateTime": "2023-07-26T02:29:25.123274Z",
6-
"id": "c2b57a74-ae4e-4c81-b3ad-9ac5bff982bd"
6+
"id": "c2b57a74-ae4e-4c81-b3ad-9ac5bff982bd",
7+
"allowRouting": true
78
}

src/WebStarter/data/users/456e35c5-caf0-4d45-9084-b44a8ca717e4/agents.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
{
2424
"userId": "456e35c5-caf0-4d45-9084-b44a8ca717e4",
25-
"agentId": "03d3fb55-9ada-423b-a6b4-f9ecddf4b26e",
25+
"agentId": "fe8c60aa-b114-4ef3-93cb-a8efeac80f75",
2626
"updatedTime": "2023-08-14T18:14:11.6833783Z",
2727
"createdTime": "2023-08-14T18:14:11.6829767Z",
2828
"id": "b10c3209-6fd6-41d1-afd9-ea9543be286d"

0 commit comments

Comments
 (0)