Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
143 changes: 143 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
name: 🐛 Bug Report
description: Report a bug or unexpected behavior
title: "[Bug]: "
labels: ["bug", "needs-triage"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to report a bug! Please fill out the form below to help us understand and reproduce the issue.

- type: dropdown
id: component
attributes:
label: Component
description: Which component is affected?
options:
- Core Agent
- LLM Integration (OpenAI/Gemini/Claude)
- STT (Speech-to-Text)
- TTS (Text-to-Speech)
- Video Processing
- Audio Processing
- Plugin System
- Edge/Stream Integration
- Examples
- Documentation
- Other
validations:
required: true

- type: dropdown
id: plugin
attributes:
label: Plugin (if applicable)
description: Which plugin is affected?
options:
- Not applicable
- anthropic
- cartesia
- deepgram
- elevenlabs
- gemini
- getstream
- kokoro
- krisp
- moonshine
- openai
- silero
- smart_turn
- ultralytics
- wizper
- xai
- Other
validations:
required: false

- type: textarea
id: description
attributes:
label: Bug Description
description: A clear and concise description of what the bug is
placeholder: Describe the bug...
validations:
required: true

- type: textarea
id: steps
attributes:
label: Steps to Reproduce
description: Steps to reproduce the behavior
placeholder: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What you expected to happen
placeholder: Describe what should happen...
validations:
required: true

- type: textarea
id: actual
attributes:
label: Actual Behavior
description: What actually happened
placeholder: Describe what actually happened...
validations:
required: true

- type: textarea
id: environment
attributes:
label: Environment
description: Environment details
placeholder: |
- OS: [e.g., macOS 14.0, Ubuntu 22.04]
- Python version: [e.g., 3.12.11]
- Vision Agents version: [e.g., 0.1.0]
- Plugin versions: [e.g., openai-plugin 0.1.0]
validations:
required: true

- type: textarea
id: code
attributes:
label: Code Sample
description: Minimal code to reproduce the issue
render: python
placeholder: |
```python
# Your code here
```
validations:
required: false

- type: textarea
id: logs
attributes:
label: Error Logs
description: Relevant error messages or logs
render: shell
placeholder: |
```
Paste error logs here
```
validations:
required: false

- type: textarea
id: additional
attributes:
label: Additional Context
description: Any other context about the problem
placeholder: Add any other context about the problem here...
validations:
required: false
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
blank_issues_enabled: false
contact_links:
- name: 💬 Discord Community
url: https://discord.gg/RkhX9PxMS6
about: Join our Discord community for discussions and support
- name: 📚 Documentation
url: https://visionagents.ai
about: Check our documentation for guides and API reference
- name: 🐛 Bug Reports
url: https://github.com/GetStream/Vision-Agents/issues/new?template=bug_report.yml
about: Report a bug or unexpected behavior
- name: ✨ Feature Requests
url: https://github.com/GetStream/Vision-Agents/issues/new?template=feature_request.yml
about: Suggest a new feature or enhancement
117 changes: 117 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
name: ✨ Feature Request
description: Suggest a new feature or enhancement
title: "[Feature]: "
labels: ["enhancement", "needs-triage"]
body:
- type: markdown
attributes:
value: |
Thanks for suggesting a new feature! Please fill out the form below to help us understand your request.

- type: dropdown
id: component
attributes:
label: Component
description: Which component would this feature affect?
options:
- Core Agent
- LLM Integration
- STT (Speech-to-Text)
- TTS (Text-to-Speech)
- Video Processing
- Audio Processing
- Plugin System
- Edge/Stream Integration
- Examples
- Documentation
- New Plugin
- Other
validations:
required: true

- type: textarea
id: feature
attributes:
label: Feature Description
description: A clear and concise description of the feature you'd like to see
placeholder: Describe the feature...
validations:
required: true

- type: textarea
id: problem
attributes:
label: Problem Statement
description: What problem does this feature solve?
placeholder: Describe the problem this feature would solve...
validations:
required: true

- type: textarea
id: solution
attributes:
label: Proposed Solution
description: Describe your proposed solution
placeholder: Describe how you think this feature should work...
validations:
required: true

- type: textarea
id: alternatives
attributes:
label: Alternative Solutions
description: Any alternative solutions or workarounds you've considered
placeholder: Describe any alternatives you've considered...
validations:
required: false

- type: textarea
id: use_cases
attributes:
label: Use Cases
description: Describe specific use cases for this feature
placeholder: |
1. Use case 1
2. Use case 2
3. Use case 3
validations:
required: true

- type: textarea
id: code
attributes:
label: Code Example
description: If you have ideas for the API, show us how it might look
render: python
placeholder: |
```python
# Example of how the feature might be used
```
validations:
required: false

- type: checkboxes
id: impact
attributes:
label: Impact Assessment
description: What would this feature impact?
options:
- label: Breaking change to existing API
required: false
- label: New plugin required
required: false
- label: Documentation updates needed
required: false
- label: Example updates needed
required: false
- label: Performance implications
required: false

- type: textarea
id: additional
attributes:
label: Additional Context
description: Any other context, mockups, or references
placeholder: Add any other context, screenshots, or references here...
validations:
required: false
41 changes: 41 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
## Description

<!-- Provide a brief description of the changes in this PR -->

## Type of Change

<!-- Mark the relevant option with an "x" -->

- [ ] 🐛 Bug fix (non-breaking change which fixes an issue)
- [ ] ✨ New feature (non-breaking change which adds functionality)
- [ ] 💥 Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] 📚 Documentation update
- [ ] 🔧 Refactoring (no functional changes)
- [ ] ⚡ Performance improvement
- [ ] 🧪 Test improvements
- [ ] 🔌 Plugin/Integration changes
- [ ] 📦 Dependencies update

## Related Issues

<!-- Link to any related issues using "Fixes #123" or "Closes #123" -->

Fixes #
Closes #
Related to #

## Changes Made

<!-- Provide a detailed list of changes made -->

## Examples/Usage

<!-- If applicable, provide examples of how to use the new functionality -->

```python
# Example code showing the new functionality
```

## Screenshots/Videos

<!-- If applicable, add screenshots or videos demonstrating the changes -->