bug_report.yml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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 [Docs](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: textarea
  24. id: description
  25. attributes:
  26. label: Description of the bug | 错误描述
  27. description: |
  28. Provide console output with error messages and/or screenshots of the bug. | 请提供详细报错信息或者截图
  29. placeholder: |
  30. 💡 ProTip! Include as much information as possible (screenshots, logs, tracebacks etc.) to receive the most helpful response.
  31. validations:
  32. required: true
  33. - type: textarea
  34. id: reproduce
  35. attributes:
  36. label: How to reproduce the bug | 如何复现
  37. # Should not word-wrap this description here.
  38. description: |
  39. If you have questions about the parsing results or encounter errors during execution: | 如对解析结果有疑问或在运行中出现报错等异常:
  40. * Provide a minimal reproducible example. | 请提供一个最小可复现的demo。
  41. * The demo should include the complete steps, code, and the PDF file to be parsed. | demo需要包含完整的操作步骤,代码,以及需要解析的PDF文件。
  42. * 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.
  43. * 在反馈解析结果异常和运行时报错时,可复现的PDF文件是必不可少的,如文档过大或涉密,您可通过浏览器打印出出现问题的某一页或某几页再提交相应的示例文件。
  44. For problems when building or installing MinerU: | 在构建或安装 MinerU 时遇到的问题:
  45. * Give the **exact** build/install commands that were run. | 提供**确切**的构建/安装命令。
  46. * Give the **complete** output from these commands. | 提供这些命令的**完整**输出。
  47. validations:
  48. required: true
  49. # - type: markdown
  50. # attributes:
  51. # value: |
  52. # # The information below is required.
  53. - type: dropdown
  54. id: os_mode
  55. attributes:
  56. label: Operating System Mode | 操作系统类型
  57. #multiple: true
  58. options:
  59. -
  60. - Windows
  61. - Linux
  62. - MacOS
  63. validations:
  64. required: true
  65. - type: textarea
  66. id: os_name_version
  67. attributes:
  68. label: Operating System Version| 操作系统版本
  69. #multiple: true
  70. description: |
  71. * 如果您使用的是Linux系统,请提供Linux系统的**发行版名称**和**版本号**来帮助开发人员排查问题。
  72. * If you are using a Linux system, please provide the Linux distribution and version number to help developers troubleshoot the issue.
  73. * 如果您使用的是Windows或MacOS系统,请提供操作系统的**版本号**来帮助开发人员排查问题。
  74. * If you are using a Windows or MacOS system, please provide the version number of the operating system to help developers troubleshoot the issue.
  75. * 例如:Ubuntu 22.04, CentOS 7.9, MacOS 15.1, Windows 11
  76. * For example: Ubuntu 22.04, CentOS 7.9, MacOS 15.1, Windows 11.
  77. validations:
  78. required: true
  79. - type: dropdown
  80. id: python_version
  81. attributes:
  82. label: Python version | Python 版本
  83. #multiple: true
  84. # Need quotes around `3.10` otherwise it is treated as a number and shows as `3.1`.
  85. options:
  86. -
  87. - "3.13"
  88. - "3.12"
  89. - "3.11"
  90. - "3.10"
  91. validations:
  92. required: true
  93. - type: dropdown
  94. id: software_version
  95. attributes:
  96. label: Software version | 软件版本 (magic-pdf --version)
  97. #multiple: false
  98. options:
  99. -
  100. - "1.0.x"
  101. - "1.1.x"
  102. - "1.2.x"
  103. - "1.3.x"
  104. validations:
  105. required: true
  106. - type: dropdown
  107. id: device_mode
  108. attributes:
  109. label: Device mode | 设备模式
  110. #multiple: true
  111. options:
  112. -
  113. - cpu
  114. - cuda
  115. - mps
  116. - npu
  117. validations:
  118. required: true