summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-01 23:47:38 -0400
committerNate Sesti <sestinj@gmail.com>2023-06-01 23:47:38 -0400
commit5fb7e9931eef72eeb83405edfade978c556c2689 (patch)
tree695164702ef5e26dcdc8540607339602dbcbe5ac /docs/src
parent33687068f6641b16b0772f98492ef808ceef7841 (diff)
downloadsncontinue-5fb7e9931eef72eeb83405edfade978c556c2689.tar.gz
sncontinue-5fb7e9931eef72eeb83405edfade978c556c2689.tar.bz2
sncontinue-5fb7e9931eef72eeb83405edfade978c556c2689.zip
Edits and braindumps in docs
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/components/HomepageFeatures/index.js35
1 files changed, 18 insertions, 17 deletions
diff --git a/docs/src/components/HomepageFeatures/index.js b/docs/src/components/HomepageFeatures/index.js
index 764ca891..0c5d8272 100644
--- a/docs/src/components/HomepageFeatures/index.js
+++ b/docs/src/components/HomepageFeatures/index.js
@@ -1,43 +1,44 @@
-import React from 'react';
-import clsx from 'clsx';
-import styles from './styles.module.css';
+import React from "react";
+import clsx from "clsx";
+import styles from "./styles.module.css";
const FeatureList = [
{
- title: 'Define the scenarios where LLMs should step into accelerate you',
- Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
+ title: "Tell LLMs when to step in",
+ Svg: require("@site/static/img/undraw_docusaurus_mountain.svg").default,
description: (
<>
- Enable LLMs to be an autopilot for parts of your software development tasks
- by leveraging recipes created by others in the workflows you use when coding
+ Seamlessly put your repetitive software development tasks on autopilot
+ by leveraging recipes created by others
</>
),
},
{
- title: 'Create your own workflows to show LLMs exactly what to do',
- Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
+ title: "Write your own recipes",
+ Svg: require("@site/static/img/undraw_docusaurus_tree.svg").default,
description: (
<>
- Use the Continue SDK to create your own custom steps and compose them into
- personalized recipes, so that using LLMs seamlessly fits into your workflows
+ Use the Continue SDK to create your own custom steps and compose them
+ into personalized recipes, guiding LLMs through common sequences of
+ tasks
</>
),
},
{
- title: 'Guide the steps taken by LLMs to learn when to use and trust them',
- Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
+ title: "Wield LLMs with confidence",
+ Svg: require("@site/static/img/undraw_docusaurus_react.svg").default,
description: (
<>
- Use the Continue GUI to review, reverse, and rerun steps or even entire recipes,
- incorporating LLMs with confidence into your software development workflows
+ Use the Continue GUI to review, reverse, and rerun steps or even entire
+ recipes, allowing you to build trust in LLMs
</>
),
},
];
-function Feature({Svg, title, description}) {
+function Feature({ Svg, title, description }) {
return (
- <div className={clsx('col col--4')}>
+ <div className={clsx("col col--4")}>
<div className="text--center">
<Svg className={styles.featureSvg} role="img" />
</div>