Skip to main content
Embed the verified units from Retrieve into the same vector space as your own data, so one query searches both at once. Gildea serves the verified intelligence; you embed text units alongside your own private context.

The recipe

The trick is one shared model: embed Gildea’s verified text units with the same embedder you use for your own documents, so every vector is comparable.
1

Pull the units you track

Take the verified units from Retrieve or your store, keeping each unit’s id and citation as provenance.
2

Embed with your own model

Embed the unit text with your own embedder (Cohere, OpenAI, Voyage, your choice).
3

Persist the vectors

Store each vector next to its id and citation, so you embed once and reuse across runs. This is the index you query alongside your own documents.
Install gildea, cohere, and numpy, set GILDEA_API_KEY and COHERE_API_KEY, then:

What you get

A persisted vector for every verified unit, each stored with its id and citation in the same space as your own data. A single similarity search then spans both your private context and Gildea’s verified market record. You hold the vectors yourself, so there is no second retrieval system to run and no lock-in. Keep the set current with Refresh.

Retrieve

Refresh