From aff61dceea6bab6a35e985242f08c221c88a9bba Mon Sep 17 00:00:00 2001 From: GeekyBaller <43145646+neelayan7@users.noreply.github.com> Date: Fri, 30 Jun 2023 15:37:31 +0530 Subject: [PATCH 1/5] Create 1.BUG_REPORT.yml Created bug report issue template --- .github/ISSUE_TEMPLATE/1.BUG_REPORT.yml | 143 ++++++++++++++++++++++++ 1 file changed, 143 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/1.BUG_REPORT.yml diff --git a/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml b/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml new file mode 100644 index 000000000..41281fc02 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml @@ -0,0 +1,143 @@ +name: Bug report +description: Create a bug report for SuperAGI. +labels: ['status: needs triage'] +body: + - type: markdown + attributes: + value: | + ### ⚠️ Before you continue + * Check out our [roadmap] and join our [discord] to discuss what's going on + * If you need help, you can ask in the [#general] section or in [#support] + * **Thoroughly search the [existing issues] before creating a new one** + * Read through our docs: + [roadmap]: https://github.com/users/TransformerOptimus/projects/1 + [discord]: https://discord.gg/dXbRe5BHJC + [#general]: https://discord.com/channels/1107593006032355359/1107642413993959505 + [#support]: https://discord.com/channels/1107593006032355359/1107645922797703198 + [existing issues]: https://github.com/TransformerOptimus/SuperAGI/issues + + - type: checkboxes + attributes: + label: ⚠️ Search for existing issues first ⚠️ + description: > + Please [search the history](https://github.com/TransformerOptimus/SuperAGI/issues) + to see if an issue already exists for the same problem. + options: + - label: I have searched the existing issues, and there is no existing issue for my problem + required: true + + - type: markdown + attributes: + value: | + Please confirm that the issue you have is described well and precise in the title above ⬆️. + Think like this: What would you type if you were searching for the issue? + + For example: + ❌ - my SuperAGI agent keeps looping + ✅ - After performing Write Tool, SuperAGI goes into a loop where it keeps trying to write the file. + + ⚠️ This is a SUPER-busy repo, please help the core team. + The less time we spend here, the more time we can spend building SuperAGI. + + Please help us help you by following these steps: + - Search for existing issues, adding a comment when you have the same or similar issue is tidier than "new issue" and + newer issues will not be reviewed earlier, this is dependent on the current priorities set by our wonderful team + - Ask on our Discord if your issue is known when you are unsure (https://discord.gg/dXbRe5BHJC) + - Provide relevant info: + - Provide Docker Logs(docker compose logs) whenever possible. + - If it's a pip/packages issue, mention this in the title and provide pip version, python version. + - type: dropdown + attributes: + label: Which Operating System are you using? + description: > + Please select the operating system you were using to run SuperAGI when this problem occurred. + options: + - Windows + - Linux + - MacOS + - Codespaces + - Web Version + - Other + validations: + required: true + nested_fields: + - type: text + attributes: + label: Specify the system + description: Please specify the system you are working on. + + - type: dropdown + attributes: + label: Which version of SuperAGI are you using? + description: | + Please select which version of SuperAGI you were using when this issue occurred. + If installed with git you can run `git branch` to see which version of Auto-GPT you are running. + options: + - Main + - Dev (branch) + validations: + required: true + + - type: dropdown + attributes: + label: Do you use OpenAI GPT-3.5 or GPT-3.5-Turbo-16k or GPT-4 or GPT-4-32k? + description: > + # If you are using SuperAGI with GPT-3.5, your problems may be caused by + # the [limitations]() of GPT-3.5. + options: + - GPT-3.5 + - GPT-3.5(16k) + - GPT-4 + - GPT-4(32k) + validations: + required: true + + - type: dropdown + attributes: + label: Which area covers your issue best? + description: > + Select the area related to the issue you are reporting. + options: + - Installation and setup + - Resource Manager + - Action Console + - Performance + - Marketplace + - Prompt + - Tools + - Agents + - Documentation + - Logging + - Other + validations: + required: true + autolabels: true + nested_fields: + - type: text + attributes: + label: Specify the area + description: Please specify the area you think is best related to the issue. + + - type: textarea + attributes: + label: Describe your issue. + description: Describe the problem you are experiencing. Try to describe only the issue and phrase it short but clear. ⚠️ Provide NO other data in this field + validations: + required: true + + #Following are optional file content uploads + - type: markdown + attributes: + value: | + ⚠️ Please keep in mind that the log files may contain personal information such as credentials. Make sure you hide them before copy/pasting it! ⚠️ + - type: input + attributes: + label: Upload Error Log Content + description: | + Upload the error log content, this can help us understand the issue better. + To do this, you can simply copy the logs from the terminal with which you did 'docker compose up' or in a new terminal, + enter 'docker compose logs' and copy/paste the error contents to this field. + ⚠️ The activity log may contain personal data given to SuperAGI by you in prompt or input as well as + any personal information that SuperAGI collected out of files during last run. Please hide them before sharing. ⚠️ + validations: + required: True From 64f8c4f9d525c0fea7bc76a16e58005b5924f84f Mon Sep 17 00:00:00 2001 From: GeekyBaller <43145646+neelayan7@users.noreply.github.com> Date: Fri, 30 Jun 2023 15:45:04 +0530 Subject: [PATCH 2/5] Update 1.BUG_REPORT.yml --- .github/ISSUE_TEMPLATE/1.BUG_REPORT.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml b/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml index 41281fc02..1698149d9 100644 --- a/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml +++ b/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml @@ -82,8 +82,8 @@ body: attributes: label: Do you use OpenAI GPT-3.5 or GPT-3.5-Turbo-16k or GPT-4 or GPT-4-32k? description: > - # If you are using SuperAGI with GPT-3.5, your problems may be caused by - # the [limitations]() of GPT-3.5. + If you are using SuperAGI with GPT-3.5, your problems may be caused by + the limitations of GPT-3.5 like incorrect Tool selection thus causing looping in the agent feed. options: - GPT-3.5 - GPT-3.5(16k) From 52d46a2347ab4231ec457c783913fb901097dbf9 Mon Sep 17 00:00:00 2001 From: GeekyBaller <43145646+neelayan7@users.noreply.github.com> Date: Fri, 30 Jun 2023 16:04:50 +0530 Subject: [PATCH 3/5] Update 1.BUG_REPORT.yml --- .github/ISSUE_TEMPLATE/1.BUG_REPORT.yml | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml b/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml index 1698149d9..be29ab899 100644 --- a/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml +++ b/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml @@ -36,9 +36,6 @@ body: ❌ - my SuperAGI agent keeps looping ✅ - After performing Write Tool, SuperAGI goes into a loop where it keeps trying to write the file. - ⚠️ This is a SUPER-busy repo, please help the core team. - The less time we spend here, the more time we can spend building SuperAGI. - Please help us help you by following these steps: - Search for existing issues, adding a comment when you have the same or similar issue is tidier than "new issue" and newer issues will not be reviewed earlier, this is dependent on the current priorities set by our wonderful team @@ -48,7 +45,7 @@ body: - If it's a pip/packages issue, mention this in the title and provide pip version, python version. - type: dropdown attributes: - label: Which Operating System are you using? + label: Where are you using SuperAGI? description: > Please select the operating system you were using to run SuperAGI when this problem occurred. options: @@ -68,7 +65,7 @@ body: - type: dropdown attributes: - label: Which version of SuperAGI are you using? + label: Which branch of SuperAGI are you using? description: | Please select which version of SuperAGI you were using when this issue occurred. If installed with git you can run `git branch` to see which version of Auto-GPT you are running. @@ -80,7 +77,7 @@ body: - type: dropdown attributes: - label: Do you use OpenAI GPT-3.5 or GPT-3.5-Turbo-16k or GPT-4 or GPT-4-32k? + label: Do you use OpenAI GPT-3.5 or GPT-4? description: > If you are using SuperAGI with GPT-3.5, your problems may be caused by the limitations of GPT-3.5 like incorrect Tool selection thus causing looping in the agent feed. @@ -125,7 +122,16 @@ body: validations: required: true - #Following are optional file content uploads + - type: textarea + attributes: + label: How to replicate your Issue? + description: | + Mention Agent Name, Agent Description and Agent Goals, along with Model selected. + Provide any other data which might be relevant for us to replicate this issue. + ⚠️ Provide NO other data in this field + validations: + required: false + - type: markdown attributes: value: | From 1747badde346abb9690e7aa853a821770ad3d789 Mon Sep 17 00:00:00 2001 From: GeekyBaller <43145646+neelayan7@users.noreply.github.com> Date: Fri, 30 Jun 2023 16:16:02 +0530 Subject: [PATCH 4/5] Update 1.BUG_REPORT.yml --- .github/ISSUE_TEMPLATE/1.BUG_REPORT.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml b/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml index be29ab899..a67e40d27 100644 --- a/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml +++ b/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml @@ -122,15 +122,15 @@ body: validations: required: true - - type: textarea + - type: textarea attributes: - label: How to replicate your Issue? - description: | + label: How to replicate your Issue? + description: | Mention Agent Name, Agent Description and Agent Goals, along with Model selected. Provide any other data which might be relevant for us to replicate this issue. ⚠️ Provide NO other data in this field validations: - required: false + required: false - type: markdown attributes: From eb8f5acabbab70a8acb6e978decb717cab0621d2 Mon Sep 17 00:00:00 2001 From: GeekyBaller <43145646+neelayan7@users.noreply.github.com> Date: Fri, 30 Jun 2023 16:31:22 +0530 Subject: [PATCH 5/5] Update 1.BUG_REPORT.yml --- .github/ISSUE_TEMPLATE/1.BUG_REPORT.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml b/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml index a67e40d27..5df7bfb40 100644 --- a/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml +++ b/.github/ISSUE_TEMPLATE/1.BUG_REPORT.yml @@ -5,7 +5,7 @@ body: - type: markdown attributes: value: | - ### ⚠️ Before you continue + ### ⚠️ Issue Creation Guideline * Check out our [roadmap] and join our [discord] to discuss what's going on * If you need help, you can ask in the [#general] section or in [#support] * **Thoroughly search the [existing issues] before creating a new one** @@ -18,7 +18,7 @@ body: - type: checkboxes attributes: - label: ⚠️ Search for existing issues first ⚠️ + label: ⚠️ Check for existing issues before proceeding. ⚠️ description: > Please [search the history](https://github.com/TransformerOptimus/SuperAGI/issues) to see if an issue already exists for the same problem.