|
| 1 | +name: Bug Report |
| 2 | +description: Report an issue with the Agent365 Python SDK. |
| 3 | +title: "[BUG] - [short description]" |
| 4 | +labels: ["bug"] |
| 5 | +assignees: [] |
| 6 | + |
| 7 | +body: |
| 8 | + - type: markdown |
| 9 | + attributes: |
| 10 | + value: | |
| 11 | + ## Bug Report |
| 12 | +
|
| 13 | + Thank you for reporting a bug in the Agent365 Python SDK! Please fill out the following information to help us diagnose and fix the issue. |
| 14 | +
|
| 15 | + - type: input |
| 16 | + attributes: |
| 17 | + label: "Bug Description" |
| 18 | + description: "Provide a clear and concise description of the bug." |
| 19 | + placeholder: "e.g., Agent runtime throws TypeError when processing tool responses, or observability module fails to emit telemetry events." |
| 20 | + required: true |
| 21 | + |
| 22 | + - type: textarea |
| 23 | + attributes: |
| 24 | + label: "Steps to Reproduce" |
| 25 | + description: "List the steps to reproduce the behavior. Include code snippets if possible." |
| 26 | + placeholder: | |
| 27 | + e.g., |
| 28 | + 1. Import microsoft_agents_a365.runtime |
| 29 | + 2. Create an agent with custom tools |
| 30 | + 3. Call agent.process_activity() with a specific message |
| 31 | + 4. Observe error in console |
| 32 | + value: | |
| 33 | + 1. |
| 34 | + 2. |
| 35 | + 3. |
| 36 | + required: true |
| 37 | + |
| 38 | + - type: textarea |
| 39 | + attributes: |
| 40 | + label: "Expected Behavior" |
| 41 | + description: "What did you expect to happen?" |
| 42 | + placeholder: "e.g., The agent should process the tool response and return a successful activity without errors." |
| 43 | + required: true |
| 44 | + |
| 45 | + - type: textarea |
| 46 | + attributes: |
| 47 | + label: "Actual Behavior" |
| 48 | + description: "What actually happened? Include error messages, stack traces, or unexpected output." |
| 49 | + placeholder: | |
| 50 | + e.g., |
| 51 | + TypeError: 'NoneType' object is not subscriptable |
| 52 | + File "microsoft_agents_a365/runtime/agent.py", line 123, in process_activity |
| 53 | + required: true |
| 54 | + |
| 55 | + - type: dropdown |
| 56 | + attributes: |
| 57 | + label: "Affected SDK Component" |
| 58 | + description: "Which Agent365 SDK package is affected?" |
| 59 | + options: |
| 60 | + - microsoft-agents-a365-runtime |
| 61 | + - microsoft-agents-a365-tooling |
| 62 | + - microsoft-agents-a365-observability-core |
| 63 | + - microsoft-agents-a365-observability-extensions-langchain |
| 64 | + - microsoft-agents-a365-observability-extensions-openai |
| 65 | + - microsoft-agents-a365-observability-extensions-semantickernel |
| 66 | + - microsoft-agents-a365-tooling-extensions-agentframework |
| 67 | + - microsoft-agents-a365-tooling-extensions-azureaifoundry |
| 68 | + - microsoft-agents-a365-tooling-extensions-openai |
| 69 | + - microsoft-agents-a365-tooling-extensions-semantickernel |
| 70 | + - microsoft-agents-a365-notifications |
| 71 | + - Not sure / Multiple components |
| 72 | + required: true |
| 73 | + |
| 74 | + - type: input |
| 75 | + attributes: |
| 76 | + label: "SDK Version" |
| 77 | + description: "What version of the Agent365 SDK are you using? (Run: pip show microsoft-agents-a365-runtime)" |
| 78 | + placeholder: "e.g., 0.1.0 or 0.1.0.dev5" |
| 79 | + required: true |
| 80 | + |
| 81 | + - type: input |
| 82 | + attributes: |
| 83 | + label: "Python Version" |
| 84 | + description: "What version of Python are you using? (Run: python --version)" |
| 85 | + placeholder: "e.g., Python 3.11.5 or Python 3.12.0" |
| 86 | + required: true |
| 87 | + |
| 88 | + - type: dropdown |
| 89 | + attributes: |
| 90 | + label: "Operating System" |
| 91 | + description: "What operating system are you running on?" |
| 92 | + options: |
| 93 | + - Windows |
| 94 | + - macOS |
| 95 | + - Linux (Ubuntu) |
| 96 | + - Linux (other distribution) |
| 97 | + - Azure (Container Apps / App Service) |
| 98 | + - Other |
| 99 | + required: true |
| 100 | + |
| 101 | + - type: textarea |
| 102 | + attributes: |
| 103 | + label: "Environment Details" |
| 104 | + description: "Additional environment information (virtual environment, container, cloud service, etc.)" |
| 105 | + placeholder: | |
| 106 | + e.g., |
| 107 | + - Running in Docker container |
| 108 | + - Deployed on Azure Container Apps |
| 109 | + - Using venv virtual environment |
| 110 | + - Running in GitHub Codespaces |
| 111 | + required: false |
| 112 | + |
| 113 | + - type: textarea |
| 114 | + attributes: |
| 115 | + label: "Code Sample (Optional)" |
| 116 | + description: "Provide a minimal code sample that reproduces the issue." |
| 117 | + placeholder: | |
| 118 | + ```python |
| 119 | + from microsoft_agents_a365.runtime import Agent |
| 120 | +
|
| 121 | + # Your code here that reproduces the bug |
| 122 | + agent = Agent(...) |
| 123 | + ``` |
| 124 | + required: false |
| 125 | + |
| 126 | + - type: textarea |
| 127 | + attributes: |
| 128 | + label: "Additional Context" |
| 129 | + description: "Add any other context, logs, stack traces, or screenshots that might help." |
| 130 | + placeholder: | |
| 131 | + e.g., |
| 132 | + - Full stack trace |
| 133 | + - Relevant log output |
| 134 | + - Related issues or discussions |
| 135 | + - Workarounds attempted |
| 136 | + required: false |
| 137 | + |
| 138 | + - type: checkboxes |
| 139 | + attributes: |
| 140 | + label: "Impact" |
| 141 | + description: "How does this bug affect your work?" |
| 142 | + options: |
| 143 | + - label: Blocks development completely |
| 144 | + - label: Blocks specific feature implementation |
| 145 | + - label: Has a workaround but impacts productivity |
| 146 | + - label: Minor issue with minimal impact |
0 commit comments