summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-05-30 16:05:43 +0200
committerTy Dunn <ty@tydunn.com>2023-05-30 16:05:43 +0200
commit2f2b8b3a3b0e391999d0fd0b2a2268140730eb50 (patch)
tree02e645bcf9e14f63e6ed8bb7297d13b6b6d5d383
parentfbdabc9d198324c5797eba76e939ff09bbdfea70 (diff)
downloadsncontinue-2f2b8b3a3b0e391999d0fd0b2a2268140730eb50.tar.gz
sncontinue-2f2b8b3a3b0e391999d0fd0b2a2268140730eb50.tar.bz2
sncontinue-2f2b8b3a3b0e391999d0fd0b2a2268140730eb50.zip
a bit more
-rw-r--r--docs/docs/concepts/autopilot.md4
-rw-r--r--docs/docs/concepts/core.md2
-rw-r--r--docs/docs/concepts/llm.md2
-rw-r--r--docs/docs/concepts/recipe.md2
4 files changed, 4 insertions, 6 deletions
diff --git a/docs/docs/concepts/autopilot.md b/docs/docs/concepts/autopilot.md
index 70c15905..8d0d3231 100644
--- a/docs/docs/concepts/autopilot.md
+++ b/docs/docs/concepts/autopilot.md
@@ -12,6 +12,4 @@ The `autopilot` is
- History
- LLM
- Policy
-- IDE
-
-**We should rename agent to autopilot in the code** \ No newline at end of file
+- IDE \ No newline at end of file
diff --git a/docs/docs/concepts/core.md b/docs/docs/concepts/core.md
index d6f6d7f7..eaadd5ff 100644
--- a/docs/docs/concepts/core.md
+++ b/docs/docs/concepts/core.md
@@ -17,4 +17,4 @@ The `Core` includes
There is a two-way sync between an IDE and the GUI that happens through Core.
-**Q: does this make sense as a concept?**
+**Q: does this make sense as a concept?** \ No newline at end of file
diff --git a/docs/docs/concepts/llm.md b/docs/docs/concepts/llm.md
index 3389771b..b3a0fca2 100644
--- a/docs/docs/concepts/llm.md
+++ b/docs/docs/concepts/llm.md
@@ -13,4 +13,4 @@ An `LLM` is short for Large Language Model, which includes models like GPT-4, St
**Q: should we call this LLM? Perhaps just model?**
-**Q: should this abstraction be connected to autopilot?**
+**Q: should this abstraction be connected to autopilot?** \ No newline at end of file
diff --git a/docs/docs/concepts/recipe.md b/docs/docs/concepts/recipe.md
index 886843a0..aa48a2a5 100644
--- a/docs/docs/concepts/recipe.md
+++ b/docs/docs/concepts/recipe.md
@@ -6,7 +6,7 @@ A `recipe` is a sequence of [steps](./step.md) composed into a workflow that dev
## What else to know
-Although technically just a step itself, since they also subclass the Step class, recipes differentiate themselves from normal steps by ending their name with `Recipe` by convention.
+Although technically just a step itself, since they also subclass the Step class, recipes differentiate themselves from normal steps by ending their name with `Recipe` by
Technically, everything is a step since everything subclasses the step class. Steps can be composed together. Once steps are composed into a workflow that developers use and share with others, that step is called a recipe and, by convention, it ends with Recipe to signal this