We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d534c2f commit eb692f6Copy full SHA for eb692f6
.github/ISSUE_TEMPLATE/bug_report.yml
@@ -61,11 +61,18 @@ body:
61
- type: textarea
62
attributes:
63
label: "Outlines/Python version information:"
64
- description: Please run the following code and paste the output here.
65
- placeholder: |
66
- import outlines; print("Outlines", outlines.__version__)
67
- import sys; print("Python", sys.version)
68
- render: python
+ description: |
+ Please run the following code and paste the output here.
+ python -c "from outlines import _version; print(_version.__version__)"
+ python -c "import sys; print('Python', sys.version)"
+ pip freeze
69
+ value: |
70
+ Version information
71
+ <details>
72
+ ```
73
+ (command output here)
74
75
+ </details>
76
validations:
77
required: true
78
0 commit comments