From 6fc452b9549802d155eab4c502ffcef7f242189c Mon Sep 17 00:00:00 2001 From: Alonso Guevara Date: Thu, 29 Aug 2024 16:35:32 -0600 Subject: [PATCH] Update bash example in docs for prompt tune (#1059) * Semver * Update bash command --- .semversioner/next-release/patch-20240829222117086645.json | 4 ++++ docsite/posts/prompt_tuning/auto_prompt_tuning.md | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .semversioner/next-release/patch-20240829222117086645.json diff --git a/.semversioner/next-release/patch-20240829222117086645.json b/.semversioner/next-release/patch-20240829222117086645.json new file mode 100644 index 00000000..7204eb51 --- /dev/null +++ b/.semversioner/next-release/patch-20240829222117086645.json @@ -0,0 +1,4 @@ +{ + "type": "patch", + "description": "Update prompt tune command in docs" +} diff --git a/docsite/posts/prompt_tuning/auto_prompt_tuning.md b/docsite/posts/prompt_tuning/auto_prompt_tuning.md index 59ea4efd..522ced51 100644 --- a/docsite/posts/prompt_tuning/auto_prompt_tuning.md +++ b/docsite/posts/prompt_tuning/auto_prompt_tuning.md @@ -26,7 +26,7 @@ Before running auto tuning make sure you have already initialized your workspace You can run the main script from the command line with various options: ```bash -python -m graphrag.prompt_tune [--root ROOT] [--domain DOMAIN] [--method METHOD] [--limit LIMIT] [--language LANGUAGE] [--max-tokens MAX_TOKENS] [--chunk-size CHUNK_SIZE] [--no-entity-types] [--output OUTPUT] +python -m graphrag.prompt_tune [--root ROOT] [--domain DOMAIN] [--method METHOD] [--limit LIMIT] [--language LANGUAGE] [--max-tokens MAX_TOKENS] [--chunk-size CHUNK_SIZE] [--n-subset-max N_SUBSET_MAX] [--k K] [--min-examples-required MIN_EXAMPLES_REQUIRED] [--no-entity-types] [--output OUTPUT] ``` ## Command-Line Options