diff options
-rw-r--r-- | docs/docs/intro.md | 23 | ||||
-rw-r--r-- | docs/docusaurus.config.js | 2 | ||||
-rw-r--r-- | docs/src/components/HomepageFeatures/index.js | 18 | ||||
-rw-r--r-- | docs/src/css/custom.css | 28 | ||||
-rw-r--r-- | docs/src/pages/index.js | 2 |
5 files changed, 30 insertions, 43 deletions
diff --git a/docs/docs/intro.md b/docs/docs/intro.md index 286fbd2d..04a50b86 100644 --- a/docs/docs/intro.md +++ b/docs/docs/intro.md @@ -1,21 +1,8 @@ # Introduction -## Scripts reimagined in the age of LLMs +## An open-source library to accelerate your use of models like GPT-4 while coding -### Automate more steps of your software development workflows using LLMs - -#### An open-source framework to accelerate your use of models like GPT-4 while coding - -1. Leverage steps created by others in your workflows as you code. -2. Customize steps and compose them together to fit your workflows. -3. Review, reverse, and rerun steps to use models with confidence. - -## How Continue works - -The Continue framework consists of a `SDK`, a `GUI`, and a `Core` that brings everything together. - -The `SDK` gives you access to tools (e.g. open a directory, edit a file, call an LLM, etc), which you can use when defining how a step should work and composing them with other steps. - -The `GUI` enables you to guide steps and makes everything transparent, so you can review all steps that were automated, giving you the opportunity to undo and rerun any that ran incorrectly. - -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.
\ No newline at end of file +Automate more steps of your software development workflows using LLMs: +1. Leverage steps created by others in your workflows as you code +2. Customize steps and compose them together to fit your workflows +3. Review, reverse, and rerun steps to use models with confidence
\ No newline at end of file diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index ef19f090..e3f633dc 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -7,7 +7,7 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula'); /** @type {import('@docusaurus/types').Config} */ const config = { title: 'Continue', - tagline: 'an open source autopilot for refining software', + tagline: 'an open-source library to accelerate your use of models like GPT-4 while coding', favicon: 'img/favicon.ico', // Set the production url of your site here diff --git a/docs/src/components/HomepageFeatures/index.js b/docs/src/components/HomepageFeatures/index.js index 78f410ba..d6d381fb 100644 --- a/docs/src/components/HomepageFeatures/index.js +++ b/docs/src/components/HomepageFeatures/index.js @@ -4,32 +4,32 @@ import styles from './styles.module.css'; const FeatureList = [ { - title: 'Easy to Use', + title: 'Define the scenarios where LLMs should step into accelerate you', Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default, description: ( <> - Docusaurus was designed from the ground up to be easily installed and - used to get your website up and running quickly. + Enable LLMs to be an autopilot for parts of your software development tasks by + leveraging steps and recipes created by others in your workflows as you code </> ), }, { - title: 'Focus on What Matters', + title: 'Create your own workflows to show LLMs exactly what to do', Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default, description: ( <> - Docusaurus lets you focus on your docs, and we'll do the chores. Go - ahead and move your docs into the <code>docs</code> directory. + Use the Continue SDK to create your own custom steps and compose them together + into personalized recipes, so that using LLMs actually fits into your workflows </> ), }, { - title: 'Powered by React', + title: 'Guide the work done by LLMs to learn when to use and trust them', Svg: require('@site/static/img/undraw_docusaurus_react.svg').default, description: ( <> - Extend or customize your website layout by reusing React. Docusaurus can - be extended while reusing the same header and footer. + Use the Continue GUI to review, reverse, and rerun some steps or even entire recipes, + incorporating LLMs with confidence into the workflows you use to create software </> ), }, diff --git a/docs/src/css/custom.css b/docs/src/css/custom.css index 2bc6a4cf..4f3d7f86 100644 --- a/docs/src/css/custom.css +++ b/docs/src/css/custom.css @@ -6,25 +6,25 @@ /* You can override the default Infima variables here. */ :root { - --ifm-color-primary: #2e8555; - --ifm-color-primary-dark: #29784c; - --ifm-color-primary-darker: #277148; - --ifm-color-primary-darkest: #205d3b; - --ifm-color-primary-light: #33925d; - --ifm-color-primary-lighter: #359962; - --ifm-color-primary-lightest: #3cad6e; + --ifm-color-primary: #87245C; + --ifm-color-primary-dark: #87245C; + --ifm-color-primary-darker: #87245C; + --ifm-color-primary-darkest: #87245C; + --ifm-color-primary-light: #87245C; + --ifm-color-primary-lighter: #87245C; + --ifm-color-primary-lightest: #87245C; --ifm-code-font-size: 95%; --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1); } /* For readability concerns, you should choose a lighter palette in dark mode. */ [data-theme='dark'] { - --ifm-color-primary: #25c2a0; - --ifm-color-primary-dark: #21af90; - --ifm-color-primary-darker: #1fa588; - --ifm-color-primary-darkest: #1a8870; - --ifm-color-primary-light: #29d5b0; - --ifm-color-primary-lighter: #32d8b4; - --ifm-color-primary-lightest: #4fddbf; + --ifm-color-primary: #87245C; + --ifm-color-primary-dark: #87245C; + --ifm-color-primary-darker: #87245C; + --ifm-color-primary-darkest: #87245C; + --ifm-color-primary-light: #87245C; + --ifm-color-primary-lighter: #87245C; + --ifm-color-primary-lightest: #87245C; --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3); } diff --git a/docs/src/pages/index.js b/docs/src/pages/index.js index affcd909..1167a97a 100644 --- a/docs/src/pages/index.js +++ b/docs/src/pages/index.js @@ -18,7 +18,7 @@ function HomepageHeader() { <Link className="button button--secondary button--lg" to="/docs/intro"> - Docusaurus Tutorial - 5min ⏱️ + Test drive it in Codespaces </Link> </div> </div> |