diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-02 00:57:57 -0400 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-02 00:57:57 -0400 |
commit | f82ccddd3bc10093fea497ab15e8c1ae132ce66d (patch) | |
tree | e106fb44c7b2b30ce05ca5b6d1803c9c16bf1125 /docs | |
parent | 23bceb8cbd90a2bb739b2a0d79d5125e9c5e978b (diff) | |
download | sncontinue-f82ccddd3bc10093fea497ab15e8c1ae132ce66d.tar.gz sncontinue-f82ccddd3bc10093fea497ab15e8c1ae132ce66d.tar.bz2 sncontinue-f82ccddd3bc10093fea497ab15e8c1ae132ce66d.zip |
agent -> autopilot
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docs/concepts/core.md | 5 | ||||
-rw-r--r-- | docs/docs/concepts/llm.md | 2 | ||||
-rw-r--r-- | docs/sidebars.js | 31 |
3 files changed, 19 insertions, 19 deletions
diff --git a/docs/docs/concepts/core.md b/docs/docs/concepts/core.md index ee58cbb2..d60f46ac 100644 --- a/docs/docs/concepts/core.md +++ b/docs/docs/concepts/core.md @@ -3,11 +3,12 @@ The `Core` connects the SDK and GUI with the IDE (i.e. in VS Code, a web browser, etc), enabling the steps to make changes to your code and accelerate your software development workflows.
The `Core` includes
+
- IDE protocol
- GUI protocol
- SDK
-- Agent
+- Autopilot
There is a two-way sync between an IDE and the GUI that happens through Core.
-**Q: does this make sense as a concept?**
\ No newline at end of file +**Q: does this make sense as a concept?**
diff --git a/docs/docs/concepts/llm.md b/docs/docs/concepts/llm.md index 11bbacc7..8c2dbcba 100644 --- a/docs/docs/concepts/llm.md +++ b/docs/docs/concepts/llm.md @@ -4,4 +4,4 @@ **Q: should we call this LLM? Perhaps just model?**
-**Q: should this abstraction be connected to agent?**
\ No newline at end of file +**Q: should this abstraction be connected to autopilot?**
diff --git a/docs/sidebars.js b/docs/sidebars.js index db9ae662..29e35a02 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -13,27 +13,26 @@ /** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ const sidebars = { - docsSidebar: [ - 'intro', - 'create-a-recipe', + "intro", + "create-a-recipe", { - type: 'category', - label: 'Concepts', + type: "category", + label: "Concepts", items: [ - 'concepts/agent', - 'concepts/core', - 'concepts/gui', - 'concepts/history', - 'concepts/ide', - 'concepts/llm', - 'concepts/policy', - 'concepts/recipes', - 'concepts/sdk', - 'concepts/step', + "concepts/autopilot", + "concepts/core", + "concepts/gui", + "concepts/history", + "concepts/ide", + "concepts/llm", + "concepts/policy", + "concepts/recipes", + "concepts/sdk", + "concepts/step", ], }, ], }; -module.exports = sidebars;
\ No newline at end of file +module.exports = sidebars; |