Skip to content

Commit 6f075e8

Browse files
authored
Merge pull request #975 from GreenShadeZhang/dev_fix_pizza
Dev fix pizza Demo
2 parents 6ef4b0c + 09340f2 commit 6f075e8

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

src/WebStarter/WebStarter.csproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@
2222
<PackageReference Include="BotSharp.Plugin.ChatHub" />
2323
</ItemGroup>
2424

25+
<Target Name="CombinedNugetPackage" BeforeTargets="PrepareForRun" Condition="$(SolutionName)=='PizzaBot'">
26+
<ItemGroup>
27+
<CoreContentFiles Include="$(NuGetPackageRoot)botsharp.core\$(BotSharpVersion)\content\data\**\*.*" />
28+
</ItemGroup>
29+
30+
<Copy SourceFiles="@(CoreContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" />
31+
</Target>
2532
<ItemGroup>
2633
<PackageReference Include="Microsoft.AspNetCore.SignalR.StackExchangeRedis" />
2734
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" />

src/WebStarter/appsettings.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,19 @@
151151
"PromptCost": 0.00002
152152
}
153153
]
154+
},
155+
{
156+
"Provider": "deepseek-ai",
157+
"Models": [
158+
{
159+
"Name": "deepseek-chat",
160+
"ApiKey": "",
161+
"Endpoint": "https://api.deepseek.com/v1/",
162+
"Type": "chat",
163+
"PromptCost": 0.0015,
164+
"CompletionCost": 0.002
165+
}
166+
]
154167
}
155168
],
156169

0 commit comments

Comments
 (0)