diff options
Diffstat (limited to 'docs/docs/walkthroughs/use-the-gui.md')
-rw-r--r-- | docs/docs/walkthroughs/use-the-gui.md | 45 |
1 files changed, 35 insertions, 10 deletions
diff --git a/docs/docs/walkthroughs/use-the-gui.md b/docs/docs/walkthroughs/use-the-gui.md index c244b461..055150c7 100644 --- a/docs/docs/walkthroughs/use-the-gui.md +++ b/docs/docs/walkthroughs/use-the-gui.md @@ -1,12 +1,37 @@ # Use the GUI
-**TODO: Describe how to use the `Continue GUI`**
-
-Points to include
-- Recipes
-- Steps
-- Single turn at the moment
-- Opening the (set of) file(s) you want to edit
-- Then giving natural language instructions
-- Reversing
-- Modifying with feedback
\ No newline at end of file +## How to edit a file using LLMs
+
+1. Open the file you want to edit
+
+2. Give instructions in natural language for how you want the file to be edited
+
+3. Press the `Continue` button
+
+4. Review the explaination of what was edited and why on the Continue GUI
+
+5. Check the code that was edited by the LLM in the code editor
+
+:::note
+At the moment, we only supporting the file that is opened and focused on in the code editor
+:::
+
+:::note
+Context is not carried across steps at the moment, so you will need to repeat any information from previous steps if you want the LLM in the current step to be aware of it
+:::
+
+## Review actions taken
+
+Whether you are using a recipe or not, you will want to review the explainations of what the LLM did and check the code that it generated. You are ultimately responsible for any code that you ship, even if it was written by a LLM.
+
+## Reverse button
+
+undo things done by steps
+
+## Rerun steps and recipes
+
+continue button (with optional modify)
+
+## How to use recipes
+
+You can learn how to use recipes [here](./use-a-recipe.md)
\ No newline at end of file |