From 0a35bcbf25cefc0f6a12a974275eab25bea9e04e Mon Sep 17 00:00:00 2001 From: Alejandro Ponce Date: Wed, 22 Jan 2025 16:20:09 +0200 Subject: [PATCH] Added missing docs on custom instructions Closes: #725 Now the docs on custom instructions are complete --- src/codegate/pipeline/cli/commands.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/codegate/pipeline/cli/commands.py b/src/codegate/pipeline/cli/commands.py index f6253224..922c4d03 100644 --- a/src/codegate/pipeline/cli/commands.py +++ b/src/codegate/pipeline/cli/commands.py @@ -476,4 +476,10 @@ def help(self) -> str: " - *args*:\n" " - `instructions`: The custom instructions to set\n" " - **Usage**: `codegate custom-instructions -w set `\n" + "- `show`: Show custom instructions of the workspace\n" + " - *args*: None\n" + " - **Usage**: `codegate custom-instructions -w show`\n" + "- `reset`: Reset the custom instructions of the workspace\n" + " - *args*: None\n" + " - **Usage**: `codegate custom-instructions -w reset`\n" )