Table of Contents

Class PostgresIndexingServiceSettings

Namespace
FoundationaLLM.SemanticKernel.Core.Models.Configuration
Assembly
FoundationaLLM.SemanticKernel.Core.dll

Provides configuration settings for the PostgreSQL vector indexing service.

public record PostgresIndexingServiceSettings : IEquatable<PostgresIndexingServiceSettings>
Inheritance
PostgresIndexingServiceSettings
Implements
Inherited Members
Extension Methods

Properties

ConnectionString

The connection string for the PostgreSQL server.

public required string ConnectionString { get; set; }

Property Value

string

Schema

Database schema of the collection tables. Uses the default schema if not specified.

public string? Schema { get; set; }

Property Value

string

VectorSize

Embedding vector size.

public required string? VectorSize { get; set; }

Property Value

string