add data file copy
This commit is contained in:
parent
28b8defdb7
commit
fc409d5e76
|
|
@ -48,6 +48,29 @@
|
|||
<PackageReference Include="BotSharp.Plugin.TencentCos" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="CombinedNugetPackage" BeforeTargets="PrepareForRun" Condition="$(SolutionName)=='PizzaBot'">
|
||||
<ItemGroup>
|
||||
<CoreContentFiles Include="$(NuGetPackageRoot)botsharp.core\$(BotSharpVersion)\content\data\**\*.*" />
|
||||
<CoreCrontabContentFiles Include="$(NuGetPackageRoot)botsharp.core.crontab\$(BotSharpVersion)\content\data\**\*.*" />
|
||||
<FileHandlerContentFiles Include="$(NuGetPackageRoot)botsharp.plugin.filehandler\$(BotSharpVersion)\content\data\**\*.*" />
|
||||
<KnowledgeBaseContentFiles Include="$(NuGetPackageRoot)botsharp.plugin.knowledgebase\$(BotSharpVersion)\content\data\**\*.*" />
|
||||
<PlannerContentFiles Include="$(NuGetPackageRoot)botsharp.plugin.planner\$(BotSharpVersion)\content\data\**\*.*" />
|
||||
<SqlDriverContentFiles Include="$(NuGetPackageRoot)botsharp.plugin.sqldriver\$(BotSharpVersion)\content\data\**\*.*" />
|
||||
<RulesContentFiles Include="$(NuGetPackageRoot)botsharp.core.rules\$(BotSharpVersion)\content\data\**\*.*" />
|
||||
<HttpHandlerContentFiles Include="$(NuGetPackageRoot)botsharp.plugin.httphandler\$(BotSharpVersion)\content\data\**\*.*" />
|
||||
<WebDriverContentFiles Include="$(NuGetPackageRoot)botsharp.plugin.webdriver\$(BotSharpVersion)\content\data\**\*.*" />
|
||||
</ItemGroup>
|
||||
|
||||
<Copy SourceFiles="@(CoreContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" />
|
||||
<Copy SourceFiles="@(CoreCrontabContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" />
|
||||
<Copy SourceFiles="@(FileHandlerContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" />
|
||||
<Copy SourceFiles="@(KnowledgeBaseContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" />
|
||||
<Copy SourceFiles="@(PlannerContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" />
|
||||
<Copy SourceFiles="@(SqlDriverContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" />
|
||||
<Copy SourceFiles="@(RulesContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" />
|
||||
<Copy SourceFiles="@(HttpHandlerContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" />
|
||||
<Copy SourceFiles="@(WebDriverContentFiles)" DestinationFolder="$(OutputPath)data\%(RecursiveDir)" />
|
||||
</Target>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.SignalR.StackExchangeRedis" />
|
||||
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" />
|
||||
|
|
|
|||
|
|
@ -154,6 +154,19 @@
|
|||
"PromptCost": 0.00002
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Provider": "deepseek-ai",
|
||||
"Models": [
|
||||
{
|
||||
"Name": "deepseek-chat",
|
||||
"ApiKey": "",
|
||||
"Endpoint": "https://api.deepseek.com/v1/",
|
||||
"Type": "chat",
|
||||
"PromptCost": 0.0015,
|
||||
"CompletionCost": 0.002
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue