Skip to content

Commit

Permalink
sequential
Browse files Browse the repository at this point in the history
  • Loading branch information
choccccy committed Nov 24, 2023
1 parent 26b8254 commit a600630
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/embedding/test_pgvector.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ async def test_PGv_embed_many_pacer():

# Insert data using insert_many()
documents = (
{
'content': text,
'title': f'Pacer Copypasta line {index}',
'page_numbers': [1, 2, 3],
'tags': ['fitness', 'pacer', 'copypasta']
}
(
text,
f'Pacer Copypasta line {index}',
[1, 2, 3],
['fitness', 'pacer', 'copypasta']
)
for index, text in enumerate(pacer_copypasta)
)
await vDB.insert_many(documents)
Expand Down

0 comments on commit a600630

Please sign in to comment.