Slide 33
Slide 33 text
SQL Example
33 Copyright © 2026, Oracle and/or its affiliates
Preprocessing - Generate Embeddings and Store Data
INSERT INTO image_details (
image_name,
image_base64,
image_description,
image_description_embedding,
image_keywords,
image_keywords_embedding
)
VALUES (
image_name,
image_base64,
image_description,
sys.ML_EMBED_ROW(
@source_image_descriptions,
'{"model_id": "cohere.embed-english-v3.0"}'
),
image_keywords,
sys.ML_EMBED_ROW(
@source_image_keywords,
'{"model_id": "cohere.embed-english-v3.0"}'
));