You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Processing the SQL DDL statement using FLOAT_VECTOR(3072) succeeds.
CREATETABLElangchain_embedding (
id STRING NOT NULL,
collection_id STRING,
embedding FLOAT_VECTOR(3072),
document STRING,
cmetadata OBJECT,
PRIMARY KEY (id)
)
The error happens when processing the INSERT statement.
INSERT INTO langchain_embedding (id, collection_id, embedding, document, cmetadata)
VALUES (?, ?, ?, ?, ?) ON CONFLICT (id) DO
UPDATESET embedding =excluded.embedding,
document =excluded.document,
cmetadata =excluded.cmetadata
The text was updated successfully, but these errors were encountered:
amotl
changed the title
SQLParseException: Field [6] vector's dimensions must be <= [2048]; got 3072
Problem with OpenAI's text-embedding-3-large model: SQLParseException: Field [6] vector's dimensions must be <= [2048]; got 3072Dec 23, 2024
amotl
changed the title
Problem with OpenAI's text-embedding-3-large model: SQLParseException: Field [6] vector's dimensions must be <= [2048]; got 3072
Problem with OpenAI's "text-embedding-3-large" model: SQLParseException: Field [6] vector's dimensions must be <= [2048]; got 3072Dec 23, 2024
amotl
changed the title
Problem with OpenAI's "text-embedding-3-large" model: SQLParseException: Field [6] vector's dimensions must be <= [2048]; got 3072
Problem with OpenAI's "text-embedding-3-large" model: vector's dimensions must be <= [2048]; got 3072Dec 23, 2024
amotl
changed the title
Problem with OpenAI's "text-embedding-3-large" model: vector's dimensions must be <= [2048]; got 3072
OpenAI "text-embedding-3-large" model: vector's dimensions must be <= [2048]; got 3072Dec 24, 2024
Problem
When trying to store text embeddings using OpenAI's
text-embedding-3-large
into CrateDB, LangChain trips.Details
Processing the SQL DDL statement using
FLOAT_VECTOR(3072)
succeeds.The error happens when processing the
INSERT
statement.The text was updated successfully, but these errors were encountered: