ReferenceAsk
Remy Reference/Admin SDK/Vector databases

Vector databases

Build and operate an app's vector databases from the CLI: load and shape a corpus, run bulk ingestion from S3 as budgeted jobs, map raw objects into documents, measure retrieval quality, and rebuild beside the live one.
remy-admin datasources

Building and operating an app's vector databases from the command line, where a corpus is loaded, shaped, measured, and tuned. add loads documents, and the platform extracts, chunks, and embeds them; create, list, status, count, rm, and search cover the rest of everyday use. Configuration lives on the corpus, not in code: config shows and changes how documents are chunked and searched. Rebuilds never touch what is live: revectorize builds a new version beside the current one, search --candidate compares the two, and promote cuts over with no downtime. move places a corpus on shared or dedicated capacity.

Beyond a hand-loaded corpus, this surface runs ingestion at scale. connect points a corpus at an S3 bucket and sync pulls it in. A bulk load runs as a job: it estimates its own cost, pauses for approval over a budget ceiling, and can be paused, resumed, retried, or cancelled, with quarantine and replay for the objects it could not process. When raw objects are not usable documents on their own, a mapper shapes them: inspect reads a source's objects, map test and map deploy build and ship the transform, and remap reruns it. eval measures retrieval quality: it runs query sets against a corpus and compares runs, so you can see the numbers behind a config change.

Product page
Vector Search & Retrieval
Hybrid semantic search with reranking and cited retrieval.
goremy.ai/vector-databases
(opens goremy.ai in a new tab)
50 entries
Commands 46
Add an eval query
Adds one query to a set, naming the document it should return.
remy-admin datasources eval add
Add documents
Adds one or more documents to a corpus and builds them, skipping any file already processed unchanged.
remy-admin datasources add
Approve a job
Approves a planned job so it starts running, subject to the capacity and budget gates.
remy-admin datasources jobs approve
Cancel a job
Cancels a job for good, keeping what it already processed.
remy-admin datasources jobs cancel
Compare eval runs
Diffs two runs: aggregate deltas, and per-query wins and losses.
remy-admin datasources eval compare
Connect an S3 source
Points a corpus at an S3 bucket so its objects can be synced in as documents.
remy-admin datasources connect
Count chunks
Counts the chunks in a corpus that match a metadata filter or text query, without returning them.
remy-admin datasources count
Create a data source
Creates a corpus explicitly, fixing its placement and chunking before the first document is added.
remy-admin datasources create
Create an eval set
Builds an evaluation set for a corpus: a batch of queries, each tagged with the document it should return.
remy-admin datasources eval create
Delete a data source
Deletes a whole corpus: its documents, vectors, and every version.
remy-admin datasources delete
Delete an eval set
Deletes an evaluation set and its runs.
remy-admin datasources eval delete
Deploy a mapper
Ships a mapper version so bulk jobs and syncs use it.
remy-admin datasources map deploy
Discard a version
Discards a candidate rebuild or a superseded version.
remy-admin datasources drop
Disconnect the source
Removes a corpus's S3 connector, leaving its already-ingested documents in place.
remy-admin datasources disconnect
Hydrate a source
Keeps a source's raw object copies, so it can be remapped and sampled later.
remy-admin datasources hydrate
Import eval queries
Bulk-adds queries to a set from a JSONL file.
remy-admin datasources eval import
Inspect quarantine
Lists the objects a mapped job skipped or errored on, with the reason for each.
remy-admin datasources jobs quarantine
Inspect source objects
Reads a sample of a source's raw objects, from a store or its connector, to see what a mapper would receive.
remy-admin datasources inspect
List data sources
Lists the app's data sources with their document counts.
remy-admin datasources list
List eval queries
Lists the queries in an evaluation set.
remy-admin datasources eval queries
List eval runs
Lists the runs recorded for a set or a corpus.
remy-admin datasources eval runs
List eval sets
Lists a corpus's evaluation sets.
remy-admin datasources eval list
List jobs
Lists a corpus's ingestion jobs with their state and progress.
remy-admin datasources jobs list
Move a data source
Moves a corpus to another placement, shared or a dedicated resource, rebuilding it there without downtime.
remy-admin datasources move
Pause a job
Pauses a running job, leaving what it has processed in place.
remy-admin datasources jobs pause
Promote a rebuilt version
Makes a rebuilt candidate version live, cutting over with no downtime.
remy-admin datasources promote
Rebuild a data source
Rebuilds a corpus under new chunking or embedding settings, alongside the live one, with no downtime.
remy-admin datasources revectorize
Reindex a source
Rebuilds a source's index in place, applying index-only changes without re-embedding.
remy-admin datasources reindex
Remap a source
Reruns the deployed mapper over a source's stored raw copies, as a budgeted job.
remy-admin datasources remap
Remove a document
Removes a single document and its vectors from a corpus.
remy-admin datasources rm
Remove an eval query
Removes one query from an evaluation set.
remy-admin datasources eval rm
Replay quarantine
Reruns a job's quarantined objects through the current mapper.
remy-admin datasources jobs replay
Resume a job
Resumes a paused job from where it stopped.
remy-admin datasources jobs resume
Retry a job
Retries the failed documents of a job, leaving what succeeded untouched.
remy-admin datasources jobs retry
Run an eval
Runs a set against a corpus at a chosen retrieval config, scoring recall, MRR, and NDCG.
remy-admin datasources eval run
Sample a source
Draws a random sample of a source's documents into a new source, optionally stratified by metadata.
remy-admin datasources sample
Search a data source
Searches a corpus from the terminal to sanity-check what it returns.
remy-admin datasources search
Show an eval set
Opens one evaluation set, with its queries on request.
remy-admin datasources eval get
Show eval result
Opens one run's aggregates, with its worst queries on request.
remy-admin datasources eval result
Show ingest status
Shows per-document ingest state for one corpus, including any parse errors.
remy-admin datasources status
Show job status
Opens one job with its plan, progress, cost so far, and recent per-document failures.
remy-admin datasources jobs status
Show or change config
Shows or changes how a corpus is chunked and searched.
remy-admin datasources config
Show the connector
Shows a corpus's connector: its bucket, prefix, last sync, and how many objects it tracks.
remy-admin datasources connector
Start a bulk job
Starts a bulk ingestion job from a file store or a manifest, estimating its cost before it runs.
remy-admin datasources jobs start
Sync from the source
Pulls the connected bucket in as a budgeted job, adding new and changed objects and mirroring deletions.
remy-admin datasources sync
Test a mapper
Runs the source's mapper against real objects and shows the documents, skips, and errors it would produce.
remy-admin datasources map test
Types 4