Skip to content

Commit

Permalink
Add FAQ page
Browse files Browse the repository at this point in the history
  • Loading branch information
Ray Myers committed Jun 14, 2024
1 parent 976da05 commit 499d994
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
32 changes: 32 additions & 0 deletions src/pages/faq.mdx
Original file line number Diff line number Diff line change
@@ -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.


0 comments on commit 499d994

Please sign in to comment.