Skip to content

pgvector/pgvector-algol

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

pgvector-algol

pgvector examples for Algol

Supports Algol 68 Genie

Build Status

Getting Started

Follow the instructions for your database library:

Algol 68 Genie

Enable the extension

pq exec (db, "CREATE EXTENSION IF NOT EXISTS vector");

Create a table

pq exec (db, "CREATE TABLE items (id bigserial PRIMARY KEY, embedding vector(3))");

Insert vectors

pq exec (db, "INSERT INTO items (embedding) VALUES ('[1,2,3]'), ('[4,5,6]')");

Get the nearest neighbors

pq exec (db, "SELECT id FROM items ORDER BY embedding <-> '[3,1,2]' LIMIT 5");
FOR i TO pq ntuples (db)
DO pq getvalue (db, i, 1);
  print((res, newline))
OD;

Add an approximate index

pq exec (db, "CREATE INDEX ON items USING hnsw (embedding vector_l2_ops)");
# or #
pq exec (db, "CREATE INDEX ON items USING ivfflat (embedding vector_l2_ops) WITH (lists = 100)");

Use vector_ip_ops for inner product and vector_cosine_ops for cosine distance

See a full example

Contributing

Everyone is encouraged to help improve this project. Here are a few ways you can help:

To get started with development:

git clone https://github.com/pgvector/pgvector-algol.git
cd pgvector-algol
createdb pgvector_algol_test
a68g example.a68

About

pgvector examples for Algol

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published