Microsoft.KernelMemory.MemoryDb.Postgres
0.61.240519.2
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.KernelMemory.MemoryDb.Postgres --version 0.61.240519.2
NuGet\Install-Package Microsoft.KernelMemory.MemoryDb.Postgres -Version 0.61.240519.2
<PackageReference Include="Microsoft.KernelMemory.MemoryDb.Postgres" Version="0.61.240519.2" />
paket add Microsoft.KernelMemory.MemoryDb.Postgres --version 0.61.240519.2
#r "nuget: Microsoft.KernelMemory.MemoryDb.Postgres, 0.61.240519.2"
// Install Microsoft.KernelMemory.MemoryDb.Postgres as a Cake Addin #addin nuget:?package=Microsoft.KernelMemory.MemoryDb.Postgres&version=0.61.240519.2 // Install Microsoft.KernelMemory.MemoryDb.Postgres as a Cake Tool #tool nuget:?package=Microsoft.KernelMemory.MemoryDb.Postgres&version=0.61.240519.2
Kernel Memory with Postgres + pgvector
This project contains the Postgres adapter allowing to use Kernel Memory with Postgres+pgvector.
[!IMPORTANT] Your Postgres instance must support vectors. You can run this SQL to see the list of extensions installed and enabled:
SELECT * FROM pg_extension
To enable the extension this should suffice:
CREATE EXTENSION vector
For more information, check:
To use Postgres with Kernel Memory:
- Have a PostgreSQL instance ready, e.g. checkout Azure Database for PostgreSQL
- Verify your Postgres instance supports vectors, e.g. run
SELECT * FROM pg_extension
Add Postgres connection string to appsettings.json (or appsettings.development.json), for example:
{ "KernelMemory": { "Services": { "Postgres": { "ConnectionString": "Host=localhost;Port=5432;Username=myuser;Password=mypassword" } } } }
Configure KM builder to store memories in Postgres, and to persist documents, for example:
// using Microsoft.KernelMemory; // using Microsoft.KernelMemory.Postgres; // using Microsoft.Extensions.Configuration; var postgresConfig = new PostgresConfig(); new ConfigurationBuilder() .AddJsonFile("appsettings.json") .AddJsonFile("appsettings.Development.json", optional: true) .Build() .BindSection("KernelMemory:Services:Postgres", postgresConfig); var memory = new KernelMemoryBuilder() .WithPostgresMemoryDb(postgresConfig) .WithSimpleFileStorage(SimpleFileStorageConfig.Persistent) .WithAzureOpenAITextGeneration(azureOpenAIConfig) .WithAzureOpenAITextEmbeddingGeneration(azureOpenAIConfig) .Build();
Neighbor search indexes, quality and performance
The connector does not create IVFFlat or HNSW indexes on Postgres tables, and uses exact nearest neighbor search. HNSW (Hierarchical Navigable Small World) has been introduced in pgvector 0.5.0 and is not available in some Postgres instances.
Depending on your scenario you might want to create these indexes manually, considering precision and performance trade-offs, or you can customize the SQL used to create tables via configuration.
[!NOTE] An IVFFlat index divides vectors into lists, and then searches a subset of those lists that are closest to the query vector. It has faster build times and uses less memory than HNSW, but has lower query performance (in terms of speed-recall tradeoff).
SQL to add IVFFlat: CREATE INDEX ON %%table_name%% USING ivfflat (embedding vector_cosine_ops) WITH (lists = 1000);
[!NOTE] An HNSW index creates a multilayer graph. It has slower build times and uses more memory than IVFFlat, but has better query performance (in terms of speed-recall tradeoff). There’s no training step like IVFFlat, so the index can be created without any data in the table.
SQL to add HNSW: CREATE INDEX ON %%table_name%% USING hnsw (embedding vector_cosine_ops);
See https://github.com/pgvector/pgvector for more information.
Memory Indexes and Postgres tables
The Postgres memory connector will create "memory indexes" automatically, one DB table for each memory index.
Table names have a configurable prefix, used to filter out other tables that
might be present. The prefix is mandatory, cannot be empty, we suggest using
the default km-
prefix. Note that the Postgres connector automatically converts
_
underscores to -
dashes to have a consistent behavior with other storage
types supported by Kernel Memory.
Overall we recommend not mixing external tables in the same DB used for Kernel Memory.
Column names and table schema
The connector uses a default schema with predefined columns and indexes.
You can change the field names, and if you need to add additional columns
or indexes, you can also customize the CREATE TABLE
SQL statement. You
can use this approach, for example, to use IVFFlat or HNSW.
See PostgresConfig
class for more details.
Here's an example where PostgresConfig
is stored in appsettings.json
and
the table schema is customized, with custom names and additional fields.
The SQL statement requires two special placeholders:
%%table_name%%
: replaced at runtime with the table name%%vector_size%%
: replaced at runtime with the embedding vectors size
There's a third optional placeholder we recommend using, to better handle
concurrency, e.g. in combination with pg_advisory_xact_lock
(exclusive transaction
level advisory locks):
%%lock_id%%
: replaced at runtime with a number
Also:
TableNamePrefix
is mandatory string added to all KM tablesColumns
is a required map describing where KM will store its data. If you have additional columns you don't need to list them here, only in SQL statement.CreateTableSql
is your optional custom SQL statement used to create tables. The column names must match those used inColumns
.
{
"KernelMemory": {
"Services": {
"Postgres": {
"TableNamePrefix": "memory_",
"Columns": {
"id": "_pk",
"embedding": "embedding",
"tags": "labels",
"content": "chunk",
"payload": "extras"
},
"CreateTableSql": [
"BEGIN; ",
"SELECT pg_advisory_xact_lock(%%lock_id%%); ",
"CREATE TABLE IF NOT EXISTS %%table_name%% ( ",
" _pk TEXT NOT NULL PRIMARY KEY, ",
" embedding vector(%%vector_size%%), ",
" labels TEXT[] DEFAULT '{}'::TEXT[] NOT NULL, ",
" chunk TEXT DEFAULT '' NOT NULL, ",
" extras JSONB DEFAULT '{}'::JSONB NOT NULL, ",
" my_field1 TEXT DEFAULT '', ",
" _update TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP ",
"); ",
"CREATE INDEX ON %%table_name%% USING GIN(labels); ",
"CREATE INDEX ON %%table_name%% USING ivfflat (embedding vector_cosine_ops); ",
"COMMIT; "
]
}
}
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.1)
- Microsoft.KernelMemory.Abstractions (>= 0.61.240519.2)
- Pgvector (>= 0.2.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Microsoft.KernelMemory.MemoryDb.Postgres:
Package | Downloads |
---|---|
Aip.Km.KernelMemoryExtension
Package Description |
|
Microsoft.KernelMemory
The package contains all the core logic and extensions of Kernel Memory, to index and query any data and documents, using LLM and natural language, tracking sources and showing citations. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
0.91.241101.1 | 76 | 11/1/2024 | |
0.91.241031.1 | 71 | 10/31/2024 | |
0.90.241021.1 | 1,542 | 10/22/2024 | |
0.90.241020.3 | 110 | 10/20/2024 | |
0.80.241017.2 | 2,230 | 10/17/2024 | |
0.79.241014.2 | 1,049 | 10/14/2024 | |
0.79.241014.1 | 155 | 10/14/2024 | |
0.78.241007.1 | 2,924 | 10/8/2024 | |
0.78.241005.1 | 429 | 10/6/2024 | |
0.77.241004.1 | 201 | 10/5/2024 | |
0.76.240930.3 | 3,684 | 9/30/2024 | |
0.75.240924.1 | 4,803 | 9/24/2024 | |
0.74.240919.1 | 2,781 | 9/19/2024 | |
0.73.240906.1 | 21,643 | 9/7/2024 | |
0.72.240904.1 | 2,547 | 9/5/2024 | |
0.71.240820.1 | 10,788 | 8/21/2024 | |
0.70.240803.1 | 20,848 | 8/3/2024 | |
0.69.240727.1 | 7,974 | 7/27/2024 | |
0.68.240722.1 | 2,933 | 7/22/2024 | |
0.68.240716.1 | 1,948 | 7/16/2024 | |
0.67.240712.1 | 1,655 | 7/12/2024 | |
0.66.240709.1 | 5,025 | 7/9/2024 | |
0.65.240620.1 | 29,584 | 6/21/2024 | |
0.64.240619.1 | 714 | 6/20/2024 | |
0.63.240618.1 | 2,474 | 6/18/2024 | |
0.62.240605.1 | 19,878 | 6/5/2024 | |
0.62.240604.1 | 482 | 6/4/2024 | |
0.61.240524.1 | 9,891 | 5/24/2024 | |
0.61.240519.2 | 9,843 | 5/19/2024 | |
0.60.240517.1 | 199 | 5/18/2024 | |
0.51.240513.2 | 6,682 | 5/13/2024 | |
0.50.240504.7 | 5,115 | 5/4/2024 | |
0.40.240501.1 | 215 | 5/1/2024 | |
0.39.240427.1 | 1,379 | 4/28/2024 | |
0.38.240425.1 | 197 | 4/25/2024 | |
0.38.240423.1 | 515 | 4/24/2024 | |
0.37.240420.2 | 590 | 4/21/2024 | |
0.36.240416.1 | 1,611 | 4/16/2024 | |
0.36.240415.2 | 171 | 4/16/2024 | |
0.36.240415.1 | 110 | 4/15/2024 | |
0.35.240412.2 | 137 | 4/12/2024 | |
0.35.240321.1 | 2,213 | 3/21/2024 | |
0.35.240318.1 | 15,217 | 3/18/2024 | |
0.34.240313.1 | 610 | 3/13/2024 | |
0.33.240312.1 | 169 | 3/12/2024 | |
0.32.240308.1 | 522 | 3/8/2024 | |
0.32.240307.3 | 147 | 3/7/2024 | |
0.32.240307.2 | 105 | 3/7/2024 | |
0.30.240227.1 | 13,060 | 2/28/2024 | |
0.29.240219.2 | 3,252 | 2/20/2024 | |
0.28.240212.1 | 476 | 2/13/2024 | |
0.27.240207.1 | 228 | 2/7/2024 | |
0.27.240205.2 | 235 | 2/6/2024 | |
0.27.240205.1 | 222 | 2/5/2024 | |
0.26.240121.1 | 3,563 | 1/22/2024 | |
0.26.240116.2 | 592 | 1/16/2024 | |
0.26.240115.4 | 295 | 1/16/2024 | |
0.26.240104.1 | 1,319 | 1/5/2024 | |
0.25.240103.1 | 167 | 1/4/2024 | |
0.24.231228.5 | 557 | 12/29/2023 | |
0.24.231228.4 | 569 | 12/29/2023 |