How-to

Export assets to their destinations

Render the selected portfolio into the destination grammar: context pack, knowledge-base manifest, or tuning-set JSONL, byte-identical on re-export, and never mutating a destination.

kno export --select-run-id <select run id> --pool pool.jsonl --destination knowledge_base
kno export --select-run-id <select run id> --pool pool.jsonl --destination context
kno export --select-run-id <select run id> --pool pool.jsonl --destination tuning_set

Destinations

Destination Output For
context context pack Prompt/context injection
knowledge_base manifest RAG ingestion pipelines
tuning_set JSONL Fine-tuning data selection

Guarantees

  • The artifact is a pure function of the portfolio and the pool: re-exporting is byte-identical.
  • Export never mutates a destination, your pipeline consumes the output; Kno does not write into it.
  • Export also reports gaps: cases your current data cannot move, measured as GAP / UNKNOWN.

Details: Export a tuning set recipe.

← All docs