Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support type casts in query typings #437

Open
mosnicholas opened this issue Jun 1, 2023 · 11 comments
Open

support type casts in query typings #437

mosnicholas opened this issue Jun 1, 2023 · 11 comments
Labels
enhancement New feature or request

Comments

@mosnicholas
Copy link

Describe the bug
Embeddings type definition has been updated to string -- it is represented internally as a vector, and in code often as a number[] -- I think number[] would be a more apt definition of the type in typescript.

Screenshot 2023-06-01 at 2 03 54 PM
@ChuckJonas
Copy link

ChuckJonas commented Jun 13, 2023

This used to work... Trying to track down the change but can't seem to find it... Pretty frustrating that you haven't even got a response on a breaking change like this...

@codesnik any thoughts?

@sweatybridge
Copy link

sweatybridge commented Jun 13, 2023

The change should be in postgres-meta repo. @soedirgo do we need a new patch release for pgmeta?

@ChuckJonas
Copy link

here is the PR: supabase/postgres-meta#559

I've been creating records and calling rpc using number[], but did just check the result of a query and it's a string so I don't really get what's going on.

@soedirgo
Copy link
Member

As mentioned in the PR, vector is represented as a JSON string in the response, so we type it as string. You'd need to do a cast like embedding::_float4, though the query typings don't support this atm.

@soedirgo
Copy link
Member

Converting this issue to supporting casts in query typings

@soedirgo soedirgo transferred this issue from supabase/cli Jun 13, 2023
@soedirgo soedirgo changed the title Type generation on embeddings is incorrect support type casts in query typings Jun 13, 2023
@soedirgo soedirgo added the enhancement New feature or request label Jun 13, 2023
@codesnik
Copy link

@codesnik any thoughts?

@ChuckJonas you probably wanted to mention someone else?

@ChuckJonas
Copy link

@codesnik ya sorry!

For some reason, when I typed @soedirgo github shows your username as the first option 🤷

@ChuckJonas
Copy link

@soedirgo do you have any idea why it actually still works to pass an array of numbers to the supabase client? I'm guessing maybe the supabase client calls JSON.stringify if it receives a javascript object?

It's fairly annoying to have to convert, when the results from any vector operation is always going to be an number[].

@soedirgo
Copy link
Member

@steve-chavez does PostgREST convert the JSON array into real[] when inserting into a vector column? I noticed that with plain SQL array[1,2,3] works, but '[1,2,3]'::jsonb doesn't.

@steve-chavez
Copy link
Member

@soedirgo No. All it does is pass the json body to json_populate_recordset.

@soedirgo
Copy link
Member

soedirgo commented Jun 14, 2023

OK, so it seems like some numeric types can be converted to vector, which is why the RPC using number[] works. But vector doesn't have a cast to json, so the text representation is used instead [0].

As an alternative to casting, you can add create a computed column like so:

alter table mytable add embedding_arr float4[] generated always as (embedding) stored;

When you query that column it'll be typed as number[].

[0] from the to_json[b] function description

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

6 participants