python-vector icon indicating copy to clipboard operation
python-vector copied to clipboard

Results 11 python-vector issues
Sort by recently updated
recently updated
newest added

Seems like you list compatibilty with python3.7+ But a few places use incorrect typing like `dict[str, Any]` which will break python3.8 and less. Full error: ``` /home/runner/.cache/pants/named_caches/pex_root/venvs/s/ee2342a6/venv/lib/python3.8/site-packages/timescale_vector/client.py:199: in QueryParams def...

Changed the type hinting from dict and list to Dict and List from the typing module to fix a compatibility issue with Python 3.8 and earlier versions.

Please let a user add a schema as an extra argument, when defining a client in python. Otherwise, the client only looks through the tables in 'public' schema. All my...

after ```await vec.create_tables()``` or ```await vec.upsert([ (uuid.uuid4(), '''{"animal":"fox"}''', "the brown fox", [1.0,1.3]), (uuid.uuid4(), '''{"animal":"fox", "action":"jump"}''', "jumped over the", [1.0,10.8]), ])`` i am getting an error: ```ValueError: invalid literal for int()...

the pgvector library supports some python ORMs, it would be important for timescale's python-vector to also support them (at least in the "main" pgvector). [example](https://github.com/pgvector/pgvector-python?tab=readme-ov-file#sqlalchemy): ```py from pgvector.sqlalchemy import Vector...

Better documentation for filters and predicates

duplicate

[https://github.com/timescale/python-vector/blob/34e51abff2f401f0e8aea71d5537b193a6fe34cb/timescale_vector/client.py#L768](url) query = ''' SELECT id, metadata, contents, embedding, {distance} as distance FROM {table_name} WHERE {where} {order_by_clause} LIMIT {limit} '''.format(distance=distance, order_by_clause=order_by_clause, where=where, table_name=self.table_name, limit=limit) return (query, params) Can we select...