Skip to content

Commit

Permalink
Add SK assets to nuget, to fix tokenizer
Browse files Browse the repository at this point in the history
  • Loading branch information
dluc committed Aug 19, 2023
1 parent 1f90c86 commit 55a7608
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
11 changes: 11 additions & 0 deletions SemanticMemory.sln
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,15 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "007-using-azure-cognitive-s
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "009-using-qdrant", "samples\009-using-qdrant\009-using-qdrant.csproj", "{8A90555B-C28B-401B-960A-619DE9A87C4C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "dotnet", "dotnet", "{87DEAE8D-138C-4FDD-B4C9-11C3A7817E8F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "nuget", "nuget", "{02B67859-5B16-46E3-9CB4-916887275649}"
ProjectSection(SolutionItems) = preProject
dotnet\nuget\icon.png = dotnet\nuget\icon.png
dotnet\nuget\nuget-package.props = dotnet\nuget\nuget-package.props
dotnet\nuget\NUGET.md = dotnet\nuget\NUGET.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -74,6 +83,8 @@ Global
{795302A5-9006-46A6-886F-7932F6A1D8C1} = {0A43C65C-6007-4BB4-B3FE-8D439FC91841}
{4A56D84B-1D8B-447B-9D9A-E36A2AE44806} = {0A43C65C-6007-4BB4-B3FE-8D439FC91841}
{8A90555B-C28B-401B-960A-619DE9A87C4C} = {0A43C65C-6007-4BB4-B3FE-8D439FC91841}
{87DEAE8D-138C-4FDD-B4C9-11C3A7817E8F} = {6EF76FD8-4C35-4370-8539-5DDF45357A50}
{02B67859-5B16-46E3-9CB4-916887275649} = {87DEAE8D-138C-4FDD-B4C9-11C3A7817E8F}
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{8A9FA587-7EBA-4D43-BE47-38D798B1C74C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
Expand Down
8 changes: 7 additions & 1 deletion dotnet/CoreLib/CoreLib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,19 @@
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.1" />
<PackageReference Include="Microsoft.SemanticKernel" Version="0.19.230804.2-preview" />
<PackageReference Include="PdfPig" Version="0.1.8" />
<PackageReference Include="RabbitMQ.Client" Version="6.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SemanticKernel" Version="0.19.230804.2-preview">
<PrivateAssets>none</PrivateAssets>
<IncludeAssets>all</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4">
<PrivateAssets>all</PrivateAssets>
Expand Down
5 changes: 4 additions & 1 deletion dotnet/nuget/NUGET.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

**Semantic Memory** is an open-source library and service specialized
in the efficient indexing of datasets through custom continuous data pipelines.

Utilizing advanced embeddings and LLMs, the system enables Natural Language
querying for obtaining answers from the indexed data, complete with citations
and links to the original sources. Designed for seamless integration with
and links to the original sources.

Designed for seamless integration with
[Semantic Kernel](https://aka.ms/semantic-kernel), Semantic Memory enhances
data-driven features in applications built using SK.

Expand Down
4 changes: 2 additions & 2 deletions dotnet/nuget/nuget-package.props
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@

<ItemGroup>
<!-- Include icon.png and NUGET.md in the project. -->
<None Include="$(RepoRoot)/dotnet/nuget/icon.png" Link="icon.png" Pack="true" PackagePath="." />
<None Include="$(RepoRoot)/dotnet/nuget/NUGET.md" Link="NUGET.md" Pack="true" PackagePath="." />
<None Include="$(RepoRoot)/dotnet/nuget/icon.png" Link="icon.png" Pack="true" PackagePath="." Visible="false" />
<None Include="$(RepoRoot)/dotnet/nuget/NUGET.md" Link="NUGET.md" Pack="true" PackagePath="." Visible="false" />
</ItemGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
Expand Down

0 comments on commit 55a7608

Please sign in to comment.