mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-26 11:28:29 +00:00
- Implement space assignment queue and worker for BullMQ - Add native Cypher cosine similarity function to replace GDS dependency - Make Trigger.dev environment variables optional (only required when QUEUE_PROVIDER=trigger) - Add EMBEDDING_MODEL_SIZE configuration for vector index management - Update vector search queries to use native Neo4j vector search with score - Add Neo4j utility scripts for index management and troubleshooting - Update documentation with embedding model configuration and vector index recreation steps
9 lines
316 B
Plaintext
9 lines
316 B
Plaintext
// Check all Neo4j indexes
|
|
SHOW INDEXES;
|
|
|
|
// Check specifically for vector indexes
|
|
SHOW INDEXES YIELD name, type WHERE type = 'VECTOR' RETURN name, type;
|
|
|
|
// Check for specific vector indexes we need
|
|
SHOW INDEXES YIELD name WHERE name IN ['entity_embedding', 'statement_embedding', 'episode_embedding'] RETURN name;
|