summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-29 22:28:26 -0700
committerNate Sesti <sestinj@gmail.com>2023-06-29 22:28:26 -0700
commitacb5f920a2d1640b8cc2a3e6f2db1f7d5a554978 (patch)
treebb3ed7e7fc739eef46e1e268ff9a4ca43af0a266
parent86fdd4488d0696c6e1f1fb62607e337c864ea930 (diff)
parent658c1c30e103b57f5928b5a26ec1672182a3fada (diff)
downloadsncontinue-acb5f920a2d1640b8cc2a3e6f2db1f7d5a554978.tar.gz
sncontinue-acb5f920a2d1640b8cc2a3e6f2db1f7d5a554978.tar.bz2
sncontinue-acb5f920a2d1640b8cc2a3e6f2db1f7d5a554978.zip
Merge branch 'main' of https://github.com/continuedev/continue
-rw-r--r--docs/docs/collecting-data.md2
-rw-r--r--docs/docusaurus.config.js1
-rw-r--r--docs/netlify.toml4
3 files changed, 6 insertions, 1 deletions
diff --git a/docs/docs/collecting-data.md b/docs/docs/collecting-data.md
index bc6d758f..b3f5a625 100644
--- a/docs/docs/collecting-data.md
+++ b/docs/docs/collecting-data.md
@@ -2,6 +2,6 @@
You might have noticed the `Collect Data` toggle at the bottom of the Continue GUI. If you turn it on, it automatically collects accepted and rejected suggestions, so you can fine-tune an LLM to give better answers.
-Right now, it stores them in a JSON file on your computer. Going forward, we plan to enable you to join them with data from other developers on your team and help you fine-tune an LLM to better follow your team's best practices.
+Right now, it stores them in `.continue/suggestions.json` within your workspace. Going forward, we plan to enable you to join them with data from other developers on your team and help you fine-tune an LLM to better follow your team's best practices.
If you are interested in working with us to fine-tune models based on your coding data, reach out to hi@continue.dev! \ No newline at end of file
diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js
index 2274d42a..a534eaa4 100644
--- a/docs/docusaurus.config.js
+++ b/docs/docusaurus.config.js
@@ -63,6 +63,7 @@ const config = {
logo: {
alt: "Continue Logo",
src: "img/logo.png",
+ href: 'https://continue.dev'
},
items: [
{
diff --git a/docs/netlify.toml b/docs/netlify.toml
new file mode 100644
index 00000000..490ac92e
--- /dev/null
+++ b/docs/netlify.toml
@@ -0,0 +1,4 @@
+[[redirects]]
+ from = "/"
+ to = "/docs/intro"
+ force = true \ No newline at end of file