BF.B× Snowflake

BF.B Inc. Earnings Embeddings in Snowflake

Query BF.B Inc. earnings call vector embeddings natively in Snowflake via Apache Iceberg. No ETL required — mount the VectorFin catalog and start querying in minutes.

Get API Access

Ticker

BF.B

Coverage

2020–present

Dims

768

Model

gemini-embedding-2-preview

Snowflake query example

-- Mount VectorFin Iceberg catalog in Snowflake
CREATE OR REPLACE ICEBERG TABLE BF.B_embeddings
  EXTERNAL_VOLUME = 'vectorfin_gcs'
  CATALOG = 'vectorfin_polaris'
  CATALOG_TABLE_NAME = 'embeddings.transcripts';

-- Query BF.B embeddings
SELECT ticker, fiscal_period, chunk_idx,
       VECTOR_COSINE_SIMILARITY(embedding, :query_vec) AS score
FROM   BF.B_embeddings
WHERE  ticker = 'BF.B'
  AND  fiscal_period = '2024-Q4'
ORDER  BY score DESC
LIMIT  10;

Start querying BF.B embeddings in Snowflake

Sign up for a free API key. Pro plan unlocks Iceberg delivery to Snowflake, BigQuery, and Databricks.