summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-30 22:47:23 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-30 22:47:23 -0700
commit96379a7bf5b576a2338142b10932d98cbc865d59 (patch)
tree4241ad9cd25442c80dd67ea730cddcd959928be0 /docs
parent57a572a420e16b08301f0c6738a1b414c59bce85 (diff)
downloadsncontinue-96379a7bf5b576a2338142b10932d98cbc865d59.tar.gz
sncontinue-96379a7bf5b576a2338142b10932d98cbc865d59.tar.bz2
sncontinue-96379a7bf5b576a2338142b10932d98cbc865d59.zip
fix: :bug: post-merge fixes
Diffstat (limited to 'docs')
-rw-r--r--docs/docs/walkthroughs/create-a-recipe.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docs/walkthroughs/create-a-recipe.md b/docs/docs/walkthroughs/create-a-recipe.md
index 5d80d083..2cb28f77 100644
--- a/docs/docs/walkthroughs/create-a-recipe.md
+++ b/docs/docs/walkthroughs/create-a-recipe.md
@@ -31,7 +31,7 @@ If you'd like to override the default description of your steps, which is just t
- Return a static string
- Store state in a class attribute (prepend with a double underscore, which signifies (through Pydantic) that this is not a parameter for the Step, just internal state) during the run method, and then grab this in the describe method.
-- Use state in conjunction with the `models` parameter of the describe method to autogenerate a description with a language model. For example, if you'd used an attribute called `__code_written` to store a string representing some code that was written, you could implement describe as `return models.gpt35.complete(f"{self.\_\_code_written}\n\nSummarize the changes made in the above code.")`.
+- Use state in conjunction with the `models` parameter of the describe method to autogenerate a description with a language model. For example, if you'd used an attribute called `__code_written` to store a string representing some code that was written, you could implement describe as `return models.medium.complete(f"{self.\_\_code_written}\n\nSummarize the changes made in the above code.")`.
## 2. Compose steps together into a complete recipe