Reference
Remy Reference/admin/Show or change config
?

Show or change config

Shows or changes how a corpus is chunked and searched.
admin.dataSources.configGet(slug) · configSet({ slug, retrieval?, ingest? })

Shows or changes a corpus's configuration. Retrieval settings, like reranking, hybrid, and top-k, take effect on the next search with no rebuild; chunking and embedding settings change how documents become vectors, so changing them on a populated corpus is rejected, use revectorize instead. In the client these are configGet and configSet.

Parameters
--source
string
Corpus slug.
--rerank / --hybrid / --top-k
settings
Retrieval settings. Free: take effect on the next search.
--max-chars / --embedding-model / ...
settings
Chunking and embedding settings. Rebuild: rejected on a populated corpus, so use revectorize.
CLI
remy-admin datasources config --source policies         # show
remy-admin datasources config --source policies --top-k 8  # change (free)