GitHub user thomastthai added a comment to the discussion: Does Apache AGE support storing vector embeddings and similarity search?
I am thinking you could try the following but I've not tested the idea. You can combine vector embeddings with Apache AGE by treating AGE's vertex tables as standard PostgreSQL tables and adding a vector column to them. This works because Apache AGE stores each vertex label as a regular PostgreSQL table within a graph-specific schema. You can modify this table with standard SQL, allowing you to add a vector column using the pg_vector extension. Run Hybrid Graph + Vector Queries: This is where the true power lies. You can now write Cypher queries that use pg_vector's similarity search operators (like <-> for L2 distance) in the WHERE clause. GitHub link: https://github.com/apache/age/discussions/2168#discussioncomment-14912203 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
