Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,11 @@
<PackageReference Update="SkiaSharp" Version="2.88.6" />
<PackageReference Update="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="2.88.6" Condition="$([MSBuild]::IsOsPlatform('Linux'))" />
<PackageReference Update="TextCopy" Version="6.2.1" />
<PackageReference Update="Microsoft.SemanticKernel" Version="1.46.0" />
<PackageReference Update="Microsoft.SemanticKernel" Version="1.71.0" />

<PackageReference Update="OpenAI" Version="2.2.0-beta.4" />
<PackageReference Update="System.ClientModel" Version="1.5.1" />
<PackageReference Update="OpenAI" Version="2.7.0" />
<PackageReference Update="Microsoft.Bcl.Memory" Version="10.0.5" />
<PackageReference Update="System.ClientModel" Version="1.8.1" />
</ItemGroup>

<!-- When updating version of Dependencies in the below section, please also update the version in the following files:
Expand Down Expand Up @@ -91,4 +92,4 @@
<ItemGroup>
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" />
</ItemGroup>
</Project>
</Project>
Binary file modified bin/ref/Scriptoria.dll
Binary file not shown.
Binary file modified bin/ref/ScriptoriaCommonDefs.dll
Binary file not shown.
Binary file modified bin/ref/SqlCopilotCommon.dll
Binary file not shown.
Binary file modified bin/ref/SqlScriptoria.dll
Binary file not shown.
Binary file modified bin/ref/SqlScriptoriaCommon.dll
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
</ItemGroup>

<ItemGroup Label="Package references">
<PackageReference Include="Microsoft.Bcl.Memory" />
<PackageReference Include="Microsoft.SemanticKernel" />
<PackageReference Include="OpenAI" />
<PackageReference Include="System.ClientModel" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ private async Task InitConversation(CopilotConversation conversation)
services.AddSingleton<ICartridgeDataAccess>((sp) => sqlService!);
services.AddSingleton<ICartridgeListener>((sp) => sqlService!);
services.AddSingleton<ITokenRateLimiter, TokenRateLimiter>();
services.AddSingleton<IToolsetFactory, ToolsetFactory>();

// Register VS Code-specific minion LLM invoker that uses DirectRequest to prevent streaming to users
// This is used by minions (AccessChecker, KnowledgeLibrarian, etc.) via dependency injection
Expand Down Expand Up @@ -229,6 +230,9 @@ private async Task InitConversation(CopilotConversation conversation)
{
CartridgeExperience = CartridgeExperienceKeyNames.VSCode_MSSQL_TsqlEditorChat,
ContextSettings = new Dictionary<string, string>()
{
{ SqlExecutionContextKeys.EnableAgentsMd, "no" }
}
};
await _executionContext.LoadExecutionContextAsync(cartridgeContextSettings, sqlService!, CancellationToken.None);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@
</ItemGroup>

<ItemGroup>
<Reference Include="SqlCopilotCommon">
<HintPath>..\..\bin\ref\SqlCopilotCommon.dll</HintPath>
</Reference>
<Reference Include="ScriptoriaCommonDefs">
<HintPath>..\..\bin\ref\ScriptoriaCommonDefs.dll</HintPath>
</Reference>
Expand Down
Loading