From 499d994f485808166148553943bc19512132250f Mon Sep 17 00:00:00 2001 From: Ray Myers Date: Thu, 13 Jun 2024 22:04:07 -0500 Subject: [PATCH] Add FAQ page --- docusaurus.config.ts | 1 + src/pages/faq.mdx | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 src/pages/faq.mdx diff --git a/docusaurus.config.ts b/docusaurus.config.ts index e717634..01abb83 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -74,6 +74,7 @@ const config: Config = { // }, {to: '/blog', label: 'News', position: 'left'}, {to: '/leaderboards', label: 'Leaderboards', position: 'left'}, + {to: '/faq', label: 'FAQ', position: 'left'}, {to: '/resources', label: 'Resources', position: 'left'}, { href: 'https://github.com/raymyers/nopilot.dev', diff --git a/src/pages/faq.mdx b/src/pages/faq.mdx new file mode 100644 index 0000000..83e83e0 --- /dev/null +++ b/src/pages/faq.mdx @@ -0,0 +1,32 @@ +--- +title: Frequently Asked Questions +--- +# Frequently Asked Questions + +**Q: What is the difference between an Agent an Assistant?** + +**A:** See [Terms](#terms) below. + +## Terms + +**Assistant**: A program that helps a human with a task by taking roughly 1 action in response to a user request. + +For instance, GitHub Copilot, or Continue.dev. + +**Agent**: A program that can take many actions in response to a single user request, changing course due to environment feedback. + +For instance, OpenDevin, SWE-agent, or Github Copilot Workspace. + +**Autonomous DevTool**: An agent that is also a DevTool, suitable for work on production systems. + +**SWE-bench**: The defacto standard metric Coding Agent performance on realistic tasks. Cases are taken from real GitHub issues on popular Python repositories. Many notable groups have submitted scores inclding Amazon, IBM, Cognition (Devin), and OpenDevin. "SWE" is short for Software Engineering. + +**SWE-bench-lite**: The official subset of SWE-bench examples, created because the full benchmark is costly to run. + +**Open Source**: Licensed to allow all of the folowing: use for any purpose, modification of the source, distributing the original, distributing modified copies. + +**Source Available**: Source can be publicly inspected but not neccesarily allowing Open Source use. + +**Open Weight**: Neural Network weights released under a permissive license. Most are not "Open Source" because weights are not "source", the training data and process are. + +