|
1 | 1 | name: 🐛 Bug Report |
2 | | -description: Create a report to help us reproduce and fix the bug |
| 2 | +description: Report a bug to help us improve llama-prompt-ops |
3 | 3 | labels: ["bug"] |
4 | 4 | body: |
5 | 5 | - type: markdown |
6 | 6 | attributes: |
7 | 7 | value: > |
8 | | - #### Before submitting a bug, please make sure the issue hasn't been already addressed by searching through [the |
9 | | - existing and past issues](https://github.com/meta-llama/llama-stack/issues). |
| 8 | + Thanks for taking the time to report a bug! Please search [existing issues](https://github.com/justinai/llama-prompt-ops/issues) first to avoid duplicates. |
10 | 9 |
|
11 | 10 | - type: textarea |
12 | | - id: system-info |
| 11 | + id: bug-description |
13 | 12 | attributes: |
14 | | - label: System Info |
15 | | - description: | |
16 | | - Please share your system info with us. You can use the following command to capture your environment information |
17 | | - python -m "torch.utils.collect_env" |
18 | | -
|
| 13 | + label: What happened? |
| 14 | + description: A clear description of the bug and what you expected to happen instead. |
19 | 15 | placeholder: | |
20 | | - PyTorch version, CUDA version, GPU type, #num of GPUs... |
| 16 | + I was trying to optimize prompts using the facility dataset, but... |
| 17 | +
|
| 18 | + Expected: The optimization should complete successfully |
| 19 | + Actual: Got an error about missing configuration |
21 | 20 | validations: |
22 | 21 | required: true |
23 | 22 |
|
24 | | - - type: checkboxes |
25 | | - id: information-scripts-examples |
26 | | - attributes: |
27 | | - label: Information |
28 | | - description: 'The problem arises when using:' |
29 | | - options: |
30 | | - - label: "The official example scripts" |
31 | | - - label: "My own modified scripts" |
32 | | - |
33 | 23 | - type: textarea |
34 | | - id: bug-description |
| 24 | + id: reproduction |
35 | 25 | attributes: |
36 | | - label: 🐛 Describe the bug |
37 | | - description: | |
38 | | - Please provide a clear and concise description of what the bug is. |
39 | | -
|
40 | | - Please also paste or describe the results you observe instead of the expected results. |
| 26 | + label: How to reproduce |
| 27 | + description: Steps to reproduce the issue, including any commands or code. |
41 | 28 | placeholder: | |
42 | | - A clear and concise description of what the bug is. |
| 29 | + 1. Run `llama-prompt-ops optimize --config configs/facility.yaml` |
| 30 | + 2. See error... |
43 | 31 |
|
44 | | - ```llama stack |
45 | | - # Command that you used for running the examples |
| 32 | + ```bash |
| 33 | + # Your command here |
46 | 34 | ``` |
47 | | - Description of the results |
48 | 35 | validations: |
49 | 36 | required: true |
50 | 37 |
|
51 | 38 | - type: textarea |
| 39 | + id: environment |
52 | 40 | attributes: |
53 | | - label: Error logs |
54 | | - description: | |
55 | | - If you observe an error, please paste the error message including the **full** traceback of the exception. It may be relevant to wrap error messages in ```` ```triple quotes blocks``` ````. |
56 | | -
|
| 41 | + label: Environment |
| 42 | + description: Your Python version and any relevant system info. |
57 | 43 | placeholder: | |
58 | | - ``` |
59 | | - The error message you got, with the full traceback. |
60 | | - ``` |
61 | | -
|
| 44 | + - Python version: 3.9.0 |
| 45 | + - llama-prompt-ops version: 0.0.8 |
| 46 | + - OS: macOS 14.0 |
62 | 47 | validations: |
63 | | - required: true |
64 | | - |
| 48 | + required: false |
65 | 49 |
|
66 | 50 | - type: textarea |
67 | | - id: expected-behavior |
68 | | - validations: |
69 | | - required: true |
70 | | - attributes: |
71 | | - label: Expected behavior |
72 | | - description: "A clear and concise description of what you would expect to happen." |
73 | | - |
74 | | - - type: markdown |
| 51 | + id: error-logs |
75 | 52 | attributes: |
76 | | - value: > |
77 | | - Thanks for contributing 🎉! |
| 53 | + label: Error logs (if any) |
| 54 | + description: Paste any error messages or stack traces. |
| 55 | + placeholder: | |
| 56 | + ``` |
| 57 | + Traceback (most recent call last): |
| 58 | + ... |
| 59 | + ``` |
| 60 | + validations: |
| 61 | + required: false |
0 commit comments