AutoGPT

Форк
0
164 строки · 7.0 Кб
1
name: Bug report 🐛
2
description: Create a bug report for AutoGPT.
3
labels: ['status: needs triage']
4
body:
5
  - type: markdown
6
    attributes:
7
      value: |
8
        ### ⚠️ Before you continue
9
        * Check out our [backlog], [roadmap] and join our [discord] to discuss what's going on
10
        * If you need help, you can ask in the [discussions] section or in [#tech-support]
11
        * **Thoroughly search the [existing issues] before creating a new one**
12
        * Read our [wiki page on Contributing]
13
        [backlog]: https://github.com/orgs/Significant-Gravitas/projects/1
14
        [roadmap]: https://github.com/orgs/Significant-Gravitas/projects/2  
15
        [discord]: https://discord.gg/autogpt
16
        [discussions]: https://github.com/Significant-Gravitas/AutoGPT/discussions
17
        [#tech-support]: https://discord.com/channels/1092243196446249134/1092275629602394184
18
        [existing issues]: https://github.com/Significant-Gravitas/AutoGPT/issues?q=is%3Aissue
19
        [wiki page on Contributing]: https://github.com/Significant-Gravitas/Nexus/wiki/Contributing
20

21
  - type: checkboxes
22
    attributes:
23
      label: ⚠️ Search for existing issues first ⚠️
24
      description: >
25
        Please [search the history](https://github.com/Significant-Gravitas/AutoGPT/issues)
26
        to see if an issue already exists for the same problem.
27
      options:
28
        - label: I have searched the existing issues, and there is no existing issue for my problem
29
          required: true
30

31
  - type: markdown
32
    attributes:
33
      value: |
34
        Please confirm that the issue you have is described well and precise in the title above ⬆️.
35
        A good rule of thumb: What would you type if you were searching for the issue?
36
        
37
        For example:
38
        BAD - my AutoGPT keeps looping
39
        GOOD - After performing execute_python_file, AutoGPT goes into a loop where it keeps trying to execute the file.
40
        
41
        ⚠️ SUPER-busy repo, please help the volunteer maintainers.
42
        The less time we spend here, the more time we can spend building AutoGPT.
43
        
44
        Please help us help you by following these steps:
45
        - Search for existing issues, adding a comment when you have the same or similar issue is tidier than "new issue" and 
46
          newer issues will not be reviewed earlier, this is dependent on the current priorities set by our wonderful team
47
        - Ask on our Discord if your issue is known when you are unsure (https://discord.gg/autogpt)
48
        - Provide relevant info:
49
          - Provide commit-hash (`git rev-parse HEAD` gets it) if possible
50
          - If it's a pip/packages issue, mention this in the title and provide pip version, python version
51
          - If it's a crash, provide traceback and describe the error you got as precise as possible in the title.
52

53
  - type: dropdown
54
    attributes:
55
      label: Which Operating System are you using?
56
      description: >
57
        Please select the operating system you were using to run AutoGPT when this problem occurred.
58
      options:
59
        - Windows
60
        - Linux
61
        - MacOS
62
        - Docker
63
        - Devcontainer / Codespace
64
        - Windows Subsystem for Linux (WSL)
65
        - Other
66
    validations:
67
      required: true
68
      nested_fields:
69
        - type: text
70
          attributes:
71
            label: Specify the system
72
            description: Please specify the system you are working on.
73

74
  - type: dropdown
75
    attributes:
76
      label: Which version of AutoGPT are you using?
77
      description: |
78
        Please select which version of AutoGPT you were using when this issue occurred.
79
        If you downloaded the code from the [releases page](https://github.com/Significant-Gravitas/AutoGPT/releases/) make sure you were using the latest code. 
80
        **If you weren't please try with the [latest code](https://github.com/Significant-Gravitas/AutoGPT/releases/)**.
81
        If installed with git you can run `git branch` to see which version of AutoGPT you are running.
82
      options:
83
        - Latest Release
84
        - Stable (branch)
85
        - Master (branch)
86
    validations:
87
      required: true
88

89
  - type: dropdown
90
    attributes:
91
      label: Do you use OpenAI GPT-3 or GPT-4?
92
      description: >
93
        If you are using AutoGPT with `--gpt3only`, your problems may be caused by
94
        the [limitations](https://github.com/Significant-Gravitas/AutoGPT/issues?q=is%3Aissue+label%3A%22AI+model+limitation%22) of GPT-3.5.
95
      options:
96
        - GPT-3.5
97
        - GPT-4
98
        - GPT-4(32k)
99
    validations:
100
      required: true
101

102
  - type: dropdown
103
    attributes:
104
      label: Which area covers your issue best?
105
      description: >
106
        Select the area related to the issue you are reporting.
107
      options:
108
        - Installation and setup
109
        - Memory
110
        - Performance
111
        - Prompt
112
        - Commands
113
        - Plugins
114
        - AI Model Limitations
115
        - Challenges
116
        - Documentation
117
        - Logging
118
        - Agents
119
        - Other
120
    validations:
121
      required: true
122
      autolabels: true
123
      nested_fields:
124
        - type: text
125
          attributes:
126
            label: Specify the area
127
            description: Please specify the area you think is best related to the issue.
128

129
  - type: textarea
130
    attributes:
131
      label: Describe your issue.
132
      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
133
    validations:
134
      required: true
135

136
  #Following are optional file content uploads
137
  - type: markdown
138
    attributes:
139
      value: |
140
        ⚠️The following is OPTIONAL, please keep in mind that the log files may contain personal information such as credentials.⚠️
141
        
142
        "The log files are located in the folder 'logs' inside the main AutoGPT folder."
143

144
  - type: textarea
145
    attributes:
146
      label: Upload Activity Log Content
147
      description: |
148
        Upload the activity log content, this can help us understand the issue better. 
149
        To do this, go to the folder logs in your main AutoGPT folder, open activity.log and copy/paste the contents to this field. 
150
        ⚠️ The activity log may contain personal data given to AutoGPT by you in prompt or input as well as 
151
        any personal information that AutoGPT collected out of files during last run. Do not add the activity log if you are not comfortable with sharing it. ⚠️
152
    validations:
153
      required: false
154

155
  - type: textarea
156
    attributes:
157
      label: Upload Error Log Content
158
      description: |
159
        Upload the error log content, this will help us understand the issue better. 
160
        To do this, go to the folder logs in your main AutoGPT folder, open error.log and copy/paste the contents to this field. 
161
        ⚠️ The error log may contain personal data given to AutoGPT by you in prompt or input as well as 
162
        any personal information that AutoGPT collected out of files during last run. Do not add the activity log if you are not comfortable with sharing it. ⚠️
163
    validations:
164
      required: false
165

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.