pgml 1.1.1

The official pgml Rust SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
/////////////////////////////
// CREATE TABLE QUERIES /////
/////////////////////////////

pub const CREATE_COLLECTIONS_TABLE: &str = r#"
CREATE TABLE IF NOT EXISTS pgml.collections (
  id serial8 PRIMARY KEY, 
  created_at timestamp NOT NULL DEFAULT now(), 
  name text NOT NULL, 
  active BOOLEAN DEFAULT TRUE, 
  project_id int8 NOT NULL REFERENCES pgml.projects ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,
  sdk_version text,
  UNIQUE (name)
);
"#;

pub const PIPELINES_TABLE: &str = r#"
CREATE TABLE IF NOT EXISTS %s (
  id serial8 PRIMARY KEY,
  name text NOT NULL,
  created_at timestamp NOT NULL DEFAULT now(), 
  active BOOLEAN NOT NULL DEFAULT TRUE,
  schema jsonb NOT NULL,
  UNIQUE (name)
);
"#;

pub const CREATE_DOCUMENTS_TABLE: &str = r#"
CREATE TABLE IF NOT EXISTS %s (
  id serial8 PRIMARY KEY,
  created_at timestamp NOT NULL DEFAULT now(),
  source_uuid uuid NOT NULL,
  version jsonb NOT NULL DEFAULT '{}'::jsonb,
  document jsonb NOT NULL,
  UNIQUE (source_uuid)
);
"#;

pub const CREATE_SPLITTERS_TABLE: &str = r#"
CREATE TABLE IF NOT EXISTS pgml.splitters (
  id serial8 PRIMARY KEY,
  created_at timestamp NOT NULL DEFAULT now(),
  name text NOT NULL, 
  parameters jsonb NOT NULL DEFAULT '{}',
  project_id int8 NOT NULL REFERENCES pgml.projects ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED
);
"#;

pub const CREATE_CHUNKS_TABLE: &str = r#"CREATE TABLE IF NOT EXISTS %s (
  id serial8 PRIMARY KEY, created_at timestamp NOT NULL DEFAULT now(), 
  document_id int8 NOT NULL REFERENCES %s ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED, 
  chunk_index int8 NOT NULL, 
  chunk text NOT NULL,
  UNIQUE (document_id, chunk_index)
);
"#;

pub const CREATE_EMBEDDINGS_TABLE: &str = r#"
CREATE TABLE IF NOT EXISTS %s (
  id serial8 PRIMARY KEY, 
  created_at timestamp NOT NULL DEFAULT now(), 
  chunk_id int8 NOT NULL REFERENCES %s ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED, 
  embedding vector(%d) NOT NULL,
  UNIQUE (chunk_id)
);
"#;

pub const CREATE_CHUNKS_TSVECTORS_TABLE: &str = r#"
CREATE TABLE IF NOT EXISTS %s (
  id serial8 PRIMARY KEY, 
  created_at timestamp NOT NULL DEFAULT now(), 
  chunk_id int8 NOT NULL REFERENCES %s ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED, 
  ts tsvector,
  UNIQUE (chunk_id)
);
"#;

pub const CREATE_PIPELINES_SEARCHES_TABLE: &str = r#"
CREATE TABLE IF NOT EXISTS %s (
  id serial8 PRIMARY KEY,
  created_at timestamp NOT NULL DEFAULT now(), 
  query jsonb
);
"#;

pub const CREATE_PIPELINES_SEARCH_RESULTS_TABLE: &str = r#"
CREATE TABLE IF NOT EXISTS %s (
  id serial8 PRIMARY KEY,
  search_id int8 NOT NULL REFERENCES %s ON DELETE CASCADE,
  document_id int8 NOT NULL REFERENCES %s ON DELETE CASCADE,
  scores jsonb NOT NULL,
  rank integer NOT NULL
);
"#;

pub const CREATE_PIPELINES_SEARCH_EVENTS_TABLE: &str = r#"
CREATE TABLE IF NOT EXISTS %s (
  id serial8 PRIMARY KEY,
  created_at timestamp NOT NULL DEFAULT now(), 
  search_result int8 NOT NULL REFERENCES %s ON DELETE CASCADE,
  event jsonb NOT NULL
);
"#;

/////////////////////////////
// CREATE INDICES ///////////
/////////////////////////////

pub const CREATE_INDEX: &str = r#"
CREATE INDEX %d IF NOT EXISTS %s ON %s (%d);
"#;

pub const CREATE_INDEX_USING_GIN: &str = r#"
CREATE INDEX %d IF NOT EXISTS %s ON %s USING GIN (%d);
"#;

pub const CREATE_INDEX_USING_HNSW: &str = r#"
CREATE INDEX %d IF NOT EXISTS %s on %s using hnsw (%d) %d;
"#;

/////////////////////////////
// Inserting Search Events //
/////////////////////////////

// Tag: CRITICAL_QUERY
// Checked: True
// Trigger: Runs whenever a user calls collection.add_search_event
// Required indexes:
// search_results table | "search_results_search_id_rank_index" btree (search_id, rank)
// Used to insert a search event
pub const INSERT_SEARCH_EVENT: &str = r#"
INSERT INTO %s (search_result, event) VALUES ((SELECT id FROM %s WHERE search_id = $1 AND rank = $2), $3)
"#;

/////////////////////////////
// Upserting Documents //////
/////////////////////////////

// Tag: CRITICAL_QUERY
// Checked: True
// Trigger: Runs whenever a user upserts documents
// Required indexes:
// documents table | - "documents_source_uuid_key" UNIQUE CONSTRAINT, btree (source_uuid)
// Used to upsert a document and merge the previous metadata on conflict
// The values of the query and the source_uuid binding are built when used
pub const UPSERT_DOCUMENT_AND_MERGE_METADATA: &str = r#"
WITH prev AS (
  SELECT id, document FROM %s WHERE source_uuid = ANY({binding_parameter})
) INSERT INTO %s (source_uuid, document, version) 
VALUES {values_parameters} 
ON CONFLICT (source_uuid) DO UPDATE SET document = %s.document || EXCLUDED.document, version = EXCLUDED.version 
RETURNING id, (SELECT document FROM prev WHERE prev.id = %s.id) 
"#;

// Tag: CRITICAL_QUERY
// Checked: True
// Trigger: Runs whenever a user upserts documents
// Required indexes:
// - documents table | "documents_source_uuid_key" UNIQUE CONSTRAINT, btree (source_uuid)
// Used to upsert a document and over the previous document on conflict
// The values of the query and the source_uuid binding are built when used
pub const UPSERT_DOCUMENT: &str = r#"
WITH prev AS (
  SELECT id, document FROM %s WHERE source_uuid = ANY({binding_parameter})
) INSERT INTO %s (source_uuid, document, version) 
VALUES {values_parameters} 
ON CONFLICT (source_uuid) DO UPDATE SET document = EXCLUDED.document, version = EXCLUDED.version 
RETURNING id, (SELECT document FROM prev WHERE prev.id = %s.id) 
"#;

/////////////////////////////
// Generaiting TSVectors ////
/////////////////////////////

// Tag: CRITICAL_QUERY
// Checked: True
// Trigger: Runs whenever a pipeline is syncing documents and does full_text_search
// Required indexes:
// - chunks table | "{key}_tsvectors_pkey" PRIMARY KEY, btree (id)
// Used to generate tsvectors for specific chunks
pub const GENERATE_TSVECTORS_FOR_CHUNK_IDS: &str = r#"
INSERT INTO %s (chunk_id, ts) 
SELECT 
  id, 
  to_tsvector('%d', chunk) ts 
FROM 
  %s
WHERE id = ANY ($1)
ON CONFLICT (chunk_id) DO UPDATE SET ts = EXCLUDED.ts;
"#;

// Tag: CRITICAL_QUERY
// Checked: True
// Trigger: Runs whenever a pipeline is resyncing and does full_text_search
// Required indexes: None
// Used to generate tsvectors for an entire collection
pub const GENERATE_TSVECTORS: &str = r#"
INSERT INTO %s (chunk_id, ts) 
SELECT 
  id, 
  to_tsvector('%d', chunk) ts 
FROM 
  %s chunks
ON CONFLICT (chunk_id) DO UPDATE SET ts = EXCLUDED.ts;
"#;

/////////////////////////////
// Generaiting Embeddings ///
/////////////////////////////

// Tag: CRITICAL_QUERY
// Checked: True
// Trigger: Runs whenver a pipeline is syncing documents and does semantic_search
// Required indexes:
// - chunks table | "{key}_chunks_pkey" PRIMARY KEY, btree (id)
// Used to generate embeddings for specific chunks
pub const GENERATE_EMBEDDINGS_FOR_CHUNK_IDS: &str = r#"
INSERT INTO %s (chunk_id, embedding) 
SELECT 
  unnest(array_agg(id)), 
  pgml.embed(
    inputs => array_agg(chunk), 
    transformer => $1, 
    kwargs => $2 
  ) 
FROM 
  %s 
WHERE 
  id = ANY ($3)
ON CONFLICT (chunk_id) DO UPDATE SET embedding = EXCLUDED.embedding
"#;

// Tag: CRITICAL_QUERY
// Checked: True
// Trigger: Runs whenever a pipeline is resyncing and does semantic_search
// Required indexes: None
// Used to generate embeddings for an entire collection
pub const GENERATE_EMBEDDINGS: &str = r#"
INSERT INTO %s (chunk_id, embedding) 
SELECT 
  id, 
  pgml.embed(
    text => chunk, 
    transformer => $1, 
    kwargs => $2 
  ) 
FROM 
  %s 
ON CONFLICT (chunk_id) DO UPDATE set embedding = EXCLUDED.embedding;
"#;

/////////////////////////////
// Generating Chunks ///////
/////////////////////////////

// Tag: CRITICAL_QUERY
// Checked: False
// Used to generate chunks for a specific documents with a splitter
pub const GENERATE_CHUNKS_FOR_DOCUMENT_IDS_WITH_SPLITTER: &str = r#"
WITH splitter AS (
    SELECT
        name,
        parameters
    FROM
        pgml.splitters
    WHERE
        id = $1
),
new AS (
    SELECT
        documents.id AS document_id,
        pgml.chunk ((
            SELECT
                name
            FROM splitter), %d, (
            SELECT
                parameters
            FROM splitter)) AS chunk_t
FROM
    %s AS documents
    WHERE
        id = ANY ($2)
),
del AS (
    DELETE FROM %s chunks
    WHERE chunk_index > (
            SELECT
                MAX((chunk_t).chunk_index)
            FROM
                new
            WHERE
                new.document_id = chunks.document_id
            GROUP BY
                new.document_id)
        AND chunks.document_id = ANY (
            SELECT
                document_id
            FROM
                new))
    INSERT INTO %s (document_id, chunk_index, chunk)
SELECT
    new.document_id,
    (chunk_t).chunk_index,
    (chunk_t).chunk
FROM
    new
    LEFT OUTER JOIN %s chunks ON chunks.document_id = new.document_id
    AND chunks.chunk_index = (chunk_t).chunk_index
WHERE (chunk_t).chunk <> COALESCE(chunks.chunk, '')
ON CONFLICT (document_id, chunk_index)
    DO UPDATE SET
        chunk = EXCLUDED.chunk
RETURNING
    id;
"#;

// Tag: CRITICAL_QUERY
// Checked: True
// Trigger: Runs whenver a pipeline is syncing documents and the key does not have a splitter
// Required indexes:
// - documents table | "documents_pkey" PRIMARY KEY, btree (id)
// - chunks table | "{key}_pipeline_chunk_document_id_index" btree (document_id)
// Used to generate chunks for a specific documents without a splitter
// This query just copies the document key into the chunk
pub const GENERATE_CHUNKS_FOR_DOCUMENT_IDS: &str = r#"
INSERT INTO %s(
    document_id, chunk_index, chunk
)
SELECT 
    documents.id,
    1,
    %d
FROM %s documents
LEFT OUTER JOIN %s chunks ON chunks.document_id = documents.id
WHERE documents.%d <> COALESCE(chunks.chunk, '')
  AND documents.id = ANY($1)
ON CONFLICT (document_id, chunk_index) DO UPDATE SET chunk = EXCLUDED.chunk 
RETURNING id
"#;

// Tag: CRITICAL_QUERY
// Checked: False
// Used to generate chunks for an entire collection with a splitter
pub const GENERATE_CHUNKS_WITH_SPLITTER: &str = r#"
WITH splitter AS (
    SELECT
        name,
        parameters
    FROM
        pgml.splitters
    WHERE
        id = $1
),
new AS (
    SELECT
        documents.id AS document_id,
        pgml.chunk ((
            SELECT
                name
            FROM splitter), %d, (
            SELECT
                parameters
            FROM splitter)) AS chunk_t
FROM
    %s AS documents
),
del AS (
    DELETE FROM %s chunks
    WHERE chunk_index > (
            SELECT
                MAX((chunk_t).chunk_index)
            FROM
                new
            WHERE
                new.document_id = chunks.document_id
            GROUP BY
                new.document_id)
        AND chunks.document_id = ANY (
            SELECT
                document_id
            FROM
                new))
INSERT INTO %s (document_id, chunk_index, chunk)
SELECT
    new.document_id,
    (chunk_t).chunk_index,
    (chunk_t).chunk
FROM
    new
ON CONFLICT (document_id, chunk_index)
    DO UPDATE SET
        chunk = EXCLUDED.chunk;
"#;

// Tag: CRITICAL_QUERY
// Trigger: Runs whenever a pipeline is resyncing
// Required indexes: None
// Checked: True
// Used to generate chunks for an entire collection
pub const GENERATE_CHUNKS: &str = r#"
INSERT INTO %s (
    document_id, chunk_index, chunk
)
SELECT
    id,
    1,
    %d
FROM %s
ON CONFLICT (document_id, chunk_index) DO UPDATE SET chunk = EXCLUDED.chunk
RETURNING id
"#;