There was an error while loading. Please reload this page.
1 parent 70ae49a commit d0aa5d3Copy full SHA for d0aa5d3
tests/test_sqlmodel.py
@@ -203,7 +203,7 @@ def test_vector_avg(self):
203
session.add(Item(embedding=[1, 2, 3]))
204
session.add(Item(embedding=[4, 5, 6]))
205
avg = session.exec(select(func.avg(Item.embedding))).first()
206
- # does not type cast
+ # does not type cast
207
assert avg == '[2.5,3.5,4.5]'
208
209
def test_vector_sum(self):
0 commit comments