vincenzon

Results 14 comments of vincenzon

Yes I did. Maybe it matters, I am running Hub in a container that spans the Lab servers in their own containers. I installed the extension in the Lab containers....

I did this: ``` video_stream = VideoStream.from_url(video_file) video_stream.video.width = 100 video_stream.video.height = 100 video_stream ``` and it still plays very large. Is that the syntax that should work?

This way of playing the video respects the height and width setting: ``` video_stream = VideoStream.from_url(video_file) video_stream.video.width = 100 video_stream.video.height = 100 video_stream.video ``` I'm not sure what the difference...

@jkatz there are 890K rows, there are 800 lists in the IVFFlat index, and I am querying with 28 probes. ``` Table "public.quotes" Column | Type | Collation | Nullable...

@fanfuxiaoran it doesn't matter how many probes I use, although, it is definitely the case that fewer probes return faster (still with no results). So it must be "doing the...

@fanfuxiaoran I guess I disagree with the conclusion that this is reasonable. I would assume that the default value of: ``` embedding '[1,3,5]' ``` would be 1.0 if no vectors...

I hit this issue as well. In case others do a fix is to explicitly set the format option: ``` const clickhouseStream = clickhouse.query( `insert into some_table`, { format: "JSONEachRow"...

Is there a configuration option to add a namespace that makes senes to me as a user?

If I run the full query (or the simple query) in the console, it always works correctly. If I run the simple query from the client, it also fails about...

This issue looks very similar to mine and is pointing to a rate limit (possibly on the stripe side): https://github.com/supabase/wrappers/issues/234 Matt On Fri, Feb 9, 2024 at 7:31 AM Matt...