Interface VectorStoreConfig

Persisted vector store configuration at ~/.wunderland/vector-store.json. Written after successful auto-setup, read by all subsequent commands.

interface VectorStoreConfig {
    type: "qdrant" | "sqlite" | "postgres";
    url?: string;
    path?: string;
    connectionString?: string;
    source?: string;
    containerName?: string;
    setupAt?: string;
}

Properties

type: "qdrant" | "sqlite" | "postgres"

Backend type.

url?: string

Connection URL (for Postgres/Qdrant).

path?: string

File path (for SQLite).

connectionString?: string

Postgres connection string.

source?: string

How this config was created.

containerName?: string

Docker container name if applicable.

setupAt?: string

ISO timestamp of when setup was performed.