File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -409,7 +409,7 @@ Enable the extension
409
409
conn.execute(' CREATE EXTENSION IF NOT EXISTS vector' )
410
410
```
411
411
412
- Register the vector type with your connection
412
+ Register the types with your connection
413
413
414
414
``` python
415
415
from pgvector.psycopg import register_vector
@@ -472,7 +472,7 @@ cur = conn.cursor()
472
472
cur.execute(' CREATE EXTENSION IF NOT EXISTS vector' )
473
473
```
474
474
475
- Register the vector type with your connection or cursor
475
+ Register the types with your connection or cursor
476
476
477
477
``` python
478
478
from pgvector.psycopg2 import register_vector
@@ -518,7 +518,7 @@ Enable the extension
518
518
await conn.execute(' CREATE EXTENSION IF NOT EXISTS vector' )
519
519
```
520
520
521
- Register the vector type with your connection
521
+ Register the types with your connection
522
522
523
523
``` python
524
524
from pgvector.asyncpg import register_vector
@@ -572,7 +572,7 @@ Enable the extension
572
572
conn.run(' CREATE EXTENSION IF NOT EXISTS vector' )
573
573
```
574
574
575
- Register the vector type with your connection
575
+ Register the types with your connection
576
576
577
577
``` python
578
578
from pgvector.pg8000 import register_vector
You can’t perform that action at this time.
0 commit comments