Skip to content

Commit

Permalink
✏️ Update documentation links
Browse files Browse the repository at this point in the history
  • Loading branch information
awtkns committed May 10, 2023
1 parent 13c7df0 commit a2347c7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
## Types of changes

<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->

Changes visible to users:

- [ ] **Bug fix** (prefix: `fix` - non-breaking change which fixes an issue)
Expand All @@ -43,7 +43,7 @@ Internal changes:

- [ ] My code follows the code style of this project and passes `npm run lint`.
- [ ] My change requires a change to the documentation.
- [ ] I have [updated the documentation](https://reworkd.github.io/AgentGPT-Documentation/docs/intro) accordingly. # {DOCUMENTATION} <------- this should lead to the doc that could be changed/ didnt find it
- [ ] I have [updated the documentation](https://docs.reworkd.ai) accordingly. # {DOCUMENTATION} <------- this should lead to the doc that could be changed/ didnt find it
- [ ] My change has adequate [Unit Test coverage]({PLACEHOLDER}).

## Terms
Expand All @@ -56,4 +56,4 @@ Put an x in the boxes to confirm you agree.
-->

- [ ] My contribution follow this project's [contributing guide](https://github.com/reworkd/AgentGPT/tree/main/.github/CONTRIBUTING.md)
- [ ] I agree to follow this project's [Code of Conduct](https://github.com/reworkd/AgentGPT/tree/main/.github/CODE_OF_CONDUCT.md)
- [ ] I agree to follow this project's [Code of Conduct](https://github.com/reworkd/AgentGPT/tree/main/.github/CODE_OF_CONDUCT.md)
8 changes: 4 additions & 4 deletions docs/docs/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ AgentGPT is currently in beta and we have a lot of features planned. Here's a gl
- 💾 **Saving and sharing agent runs**
- If you are signed in, after your agent run has finished you have the ability to save it to our database.
- 🌐 **Dynamic translations for multiple languages**
- AgentGPT is used worldwide and we want to ensure everyone has a seamless experience on the platform. If we are missing the translation for your language, we'd love your help in getting it implemented!
- AgentGPT is used worldwide and we want to ensure everyone has a seamless experience on the platform. If we are missing the translation for your language, we'd love your help in getting it implemented!
- 🤖 **AI Model customization**
- Now users have the ability to use their own OpenAI API key to customize everything from the model, temperature, loops, and more! This also all runs directly within the user's browser!

Expand All @@ -25,10 +25,10 @@ AgentGPT developers are actively working on the following. Expect these to take
- This does not currently visit the websites themselves and parse websites but we are working on this.
-**Backend migration to Python**
- This is a bigger undertaking but something we feel must be done. It will allow us to migrate off of edge functions and use all of the tools available for language models in the Python ecosystem.
- 🧠 **Long term memory via a vector DB**
- 🧠 **Long term memory via a vector DB**
- Providing Agents with more memory will allow them to perform tasks with a lot more context. This will also stop Agents from trying to perform the same or similar tasks multiple times.
- 🤖 **Agent steer-ability**
- Users should be able to guide the Agent through a goal. This involves adding or removing tasks and providing additional context for the agent
- Users should be able to guide the Agent through a goal. This involves adding or removing tasks and providing additional context for the agent
- 📚 **Documentation overhaul**
- This is the page you're viewing right now! It will continually be updated as the project evolves to allow any new user / contributer to get familiar with AgentGPT as quickly as possible.

Expand All @@ -46,4 +46,4 @@ If any of these features stand out to you or you'd like to suggest more features

## Notes
We are constantly updating our roadmap and adding new features so stay tuned for more updates and have a look at our GitHub.
We are however a small team and would love community support in helping develop AgentGPT. If you're interested, please head over to our [contributing page](/docs/contributing).
We are however a small team and would love community support in helping develop AgentGPT. If you're interested, please head over to our [contributing page](/contributing).
2 changes: 1 addition & 1 deletion next/src/components/ChatWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ const FAQ = () => {
<p>
<br />
If you are facing issues, please head over to our{" "}
<a href="https://reworkd.github.io/AgentGPT-Documentation/docs/faq" className="text-sky-500">
<a href="https://docs.reworkd.ai/faq" className="text-sky-500">
FAQ
</a>
</p>
Expand Down
2 changes: 1 addition & 1 deletion next/src/components/HelpDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function HelpDialog({ show, close }: { show: boolean; close: () =
ns: "help",
})}
<a
href="https://reworkd.github.io/AgentGPT-Documentation/docs/intro"
href="https://docs.reworkd.ai"
className="text-sky-500"
>
{t("AGENTGPT_DOCUMENTATION", { ns: "help" })}
Expand Down
2 changes: 1 addition & 1 deletion next/src/components/SorryDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const SorryDialog = ({ show, close }: SorryDialogProps) => {
})}`}
<a
className="link"
href="https://reworkd.github.io/AgentGPT-Documentation/docs/roadmap"
href="https://docs.reworkd.ai/roadmap"
target="_blank"
rel="noreferrer"
>
Expand Down

0 comments on commit a2347c7

Please sign in to comment.