|
| 1 | + |
| 2 | +name: Bug Report |
| 3 | +description: Report a bug in the project |
| 4 | +title: "[Bug] " |
| 5 | +labels: bug |
| 6 | +body: |
| 7 | + - type: markdown |
| 8 | + attributes: |
| 9 | + value: | |
| 10 | + ## 🐛 Bug Report |
| 11 | + Please fill out all required fields to help us diagnose and fix the issue. |
| 12 | +
|
| 13 | + - type: input |
| 14 | + id: environment |
| 15 | + attributes: |
| 16 | + label: "Elysia version" |
| 17 | + description: "Tell us your Elysia version. (You can find this out via `pip show elysia-ai` in your environment that you installed Elysia in.)" |
| 18 | + validations: |
| 19 | + required: true |
| 20 | + |
| 21 | + - type: input |
| 22 | + id: installation_method |
| 23 | + attributes: |
| 24 | + label: "Installation method" |
| 25 | + description: "How did you install Elysia? (e.g. pip, uv, conda, from source, etc.)" |
| 26 | + placeholder: "pip install elysia-ai" |
| 27 | + |
| 28 | + validations: |
| 29 | + required: true |
| 30 | + |
| 31 | + - type: dropdown |
| 32 | + id: app_or_python |
| 33 | + attributes: |
| 34 | + label: "Is the issue occurring in the Elysia package or the Elysia web app?" |
| 35 | + description: "Please note that if your bug looks like a frontend problem (e.g. items not displaying, etc.), you might want to submit a bug report to the Elysia frontend repository instead: https://github.com/weaviate/elysia-frontend. However, if you are getting _errors_ in the app, then it is likely the backend and suited for here." |
| 36 | + options: |
| 37 | + - "Python package (running Elysia in python)" |
| 38 | + - "Elysia web app (using the app via `elysia start`)" |
| 39 | + - "Both" |
| 40 | + |
| 41 | + - type: textarea |
| 42 | + id: description |
| 43 | + attributes: |
| 44 | + label: "What happened?" |
| 45 | + description: "Clearly describe the unexpected behavior. Attach a full error log if possible. In the web app, you may have an error in the terminal you ran `elysia start` from." |
| 46 | + placeholder: "Whenever I try to run a query, I get an error message..." |
| 47 | + validations: |
| 48 | + required: true |
| 49 | + |
| 50 | + - type: textarea |
| 51 | + id: steps-to-reproduce |
| 52 | + attributes: |
| 53 | + label: "Steps to reproduce" |
| 54 | + description: "Please provide a code snippet if applicable, or what you were doing when the issue occurred. If it seems a problem with your data, attach a (dummy) sample of your data or your schema. In Weaviate, you can do `print(client.collections.get("<your_collection_name>").config.get())`" |
| 55 | + |
| 56 | + |
| 57 | + - type: textarea |
| 58 | + id: additional_context |
| 59 | + attributes: |
| 60 | + label: "Additional context" |
| 61 | + description: "Tell us any additional context that might be helpful. E.g., are you running local weaviate, is it a local model (which one), any special considerations, etc." |
0 commit comments