bug_report.yml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. name: 🐛 Bug Report
  2. description: Create a bug report for MinerU | MinerU 的 Bug 反馈
  3. labels: bug
  4. # We omit `title: "..."` so that the field defaults to blank. If we set it to
  5. # empty string, Github seems to reject this .yml file.
  6. body:
  7. - type: markdown
  8. attributes:
  9. value: |
  10. Thank you for submitting a MinerU 🐛 Bug Report! | 感谢您提交 MinerU 🐛 Bug 反馈!
  11. - type: checkboxes
  12. attributes:
  13. label: 🔎 Search before asking | 提交之前请先搜索
  14. description: >
  15. Please search the MinerU [Readme](https://github.com/opendatalab/MinerU), [Issues](https://github.com/opendatalab/MinerU/issues) and [Discussions](https://github.com/opendatalab/MinerU/discussions) to see if a similar bug report already exists.
  16. options:
  17. - label: I have searched the MinerU [Readme](https://github.com/opendatalab/MinerU) and found no similar bug report.
  18. required: true
  19. - label: I have searched the MinerU [Issues](https://github.com/opendatalab/MinerU/issues) and found no similar bug report.
  20. required: true
  21. - label: I have searched the MinerU [Discussions](https://github.com/opendatalab/MinerU/discussions) and found no similar bug report.
  22. required: true
  23. - type: checkboxes
  24. attributes:
  25. label: 🤖 Consult the online AI assistant for assistance | 在线 AI 助手咨询
  26. description: >
  27. This [online AI assistant](https://deepwiki.com/opendatalab/MinerU) is specifically trained to help with MinerU and related topics! It's available 24/7 and ready to provide insights.
  28. options:
  29. - label: I have consulted the [online AI assistant](https://deepwiki.com/opendatalab/MinerU) but was unable to obtain a solution to the issue.
  30. required: true
  31. - type: textarea
  32. id: description
  33. attributes:
  34. label: Description of the bug | 错误描述
  35. description: |
  36. Provide console output with error messages and/or screenshots of the bug. | 请提供详细报错信息或者截图
  37. placeholder: |
  38. 💡 ProTip! Include as much information as possible (screenshots, logs, tracebacks etc.) to receive the most helpful response.
  39. validations:
  40. required: true
  41. - type: textarea
  42. id: reproduce
  43. attributes:
  44. label: How to reproduce the bug | 如何复现
  45. # Should not word-wrap this description here.
  46. description: |
  47. If you have questions about the parsing results or encounter errors during execution: | 如对解析结果有疑问或在运行中出现报错等异常:
  48. * Provide a minimal reproducible example. | 请提供一个最小可复现的demo。
  49. * The demo should include the complete steps, code, and the PDF file to be parsed. | demo需要包含完整的操作步骤,代码,以及需要解析的PDF文件。
  50. * When reporting parsing result anomalies and runtime errors, reproducible PDF files are essential. If the document is too large or confidential, you can print the problematic page(s) via the browser and submit the corresponding example file.
  51. * 在反馈解析结果异常和运行时报错时,可复现的PDF文件是必不可少的,如文档过大或涉密,您可通过浏览器打印出出现问题的某一页或某几页再提交相应的示例文件。
  52. For problems when building or installing MinerU: | 在构建或安装 MinerU 时遇到的问题:
  53. * Give the **exact** build/install commands that were run. | 提供**确切**的构建/安装命令。
  54. * Give the **complete** output from these commands. | 提供这些命令的**完整**输出。
  55. validations:
  56. required: true
  57. # - type: markdown
  58. # attributes:
  59. # value: |
  60. # # The information below is required.
  61. - type: dropdown
  62. id: os_mode
  63. attributes:
  64. label: Operating System Mode | 操作系统类型
  65. #multiple: true
  66. options:
  67. -
  68. - Windows
  69. - Linux
  70. - MacOS
  71. validations:
  72. required: true
  73. - type: textarea
  74. id: os_name_version
  75. attributes:
  76. label: Operating System Version| 操作系统版本
  77. #multiple: true
  78. description: |
  79. * 如果您使用的是Linux系统,请提供Linux系统的**发行版名称**和**版本号**来帮助开发人员排查问题。
  80. * If you are using a Linux system, please provide the Linux distribution and version number to help developers troubleshoot the issue.
  81. * 如果您使用的是Windows或MacOS系统,请提供操作系统的**版本号**来帮助开发人员排查问题。
  82. * If you are using a Windows or MacOS system, please provide the version number of the operating system to help developers troubleshoot the issue.
  83. * 例如:Ubuntu 22.04, CentOS 7.9, MacOS 15.1, Windows 11
  84. * For example: Ubuntu 22.04, CentOS 7.9, MacOS 15.1, Windows 11.
  85. validations:
  86. required: true
  87. - type: dropdown
  88. id: python_version
  89. attributes:
  90. label: Python version | Python 版本
  91. #multiple: true
  92. # Need quotes around `3.10` otherwise it is treated as a number and shows as `3.1`.
  93. options:
  94. -
  95. - "3.13"
  96. - "3.12"
  97. - "3.11"
  98. - "3.10"
  99. validations:
  100. required: true
  101. - type: dropdown
  102. id: software_version
  103. attributes:
  104. label: Software version | 软件版本 (mineru --version)
  105. #multiple: false
  106. options:
  107. -
  108. - "2.0.x"
  109. validations:
  110. required: true
  111. - type: dropdown
  112. id: device_mode
  113. attributes:
  114. label: Device mode | 设备模式
  115. #multiple: true
  116. options:
  117. -
  118. - cpu
  119. - cuda
  120. - mps
  121. - npu
  122. validations:
  123. required: true