mirror of
https://github.com/crewAIInc/crewAI.git
synced 2025-12-18 13:28:31 +00:00
Compare commits
2 Commits
docs/fix-d
...
git-temapl
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7fdabda97e | ||
|
|
7306414de7 |
116
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
116
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
@@ -0,0 +1,116 @@
|
|||||||
|
name: Bug report
|
||||||
|
description: Create a report to help us improve CrewAI
|
||||||
|
title: "[BUG]"
|
||||||
|
labels: ["bug"]
|
||||||
|
assignees: []
|
||||||
|
body:
|
||||||
|
- type: textarea
|
||||||
|
id: description
|
||||||
|
attributes:
|
||||||
|
label: Description
|
||||||
|
description: Provide a clear and concise description of what the bug is.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: steps-to-reproduce
|
||||||
|
attributes:
|
||||||
|
label: Steps to Reproduce
|
||||||
|
description: Provide a step-by-step process 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-behavior
|
||||||
|
attributes:
|
||||||
|
label: Expected behavior
|
||||||
|
description: A clear and concise description of what you expected to happen.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: screenshots-code
|
||||||
|
attributes:
|
||||||
|
label: Screenshots/Code snippets
|
||||||
|
description: If applicable, add screenshots or code snippets to help explain your problem.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: dropdown
|
||||||
|
id: os
|
||||||
|
attributes:
|
||||||
|
label: Operating System
|
||||||
|
description: Select the operating system you're using
|
||||||
|
options:
|
||||||
|
- Ubuntu 20.04
|
||||||
|
- Ubuntu 22.04
|
||||||
|
- Ubuntu 24.04
|
||||||
|
- macOS Catalina
|
||||||
|
- macOS Big Sur
|
||||||
|
- macOS Monterey
|
||||||
|
- macOS Ventura
|
||||||
|
- macOS Sonoma
|
||||||
|
- Windows 10
|
||||||
|
- Windows 11
|
||||||
|
- Other (specify in additional context)
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: dropdown
|
||||||
|
id: python-version
|
||||||
|
attributes:
|
||||||
|
label: Python Version
|
||||||
|
description: Version of Python your Crew is running on
|
||||||
|
options:
|
||||||
|
- '3.10'
|
||||||
|
- '3.11'
|
||||||
|
- '3.12'
|
||||||
|
- '3.13'
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: input
|
||||||
|
id: crewai-version
|
||||||
|
attributes:
|
||||||
|
label: crewAI Version
|
||||||
|
description: What version of CrewAI are you using
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: input
|
||||||
|
id: crewai-tools-version
|
||||||
|
attributes:
|
||||||
|
label: crewAI Tools Version
|
||||||
|
description: What version of CrewAI Tools are you using
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: dropdown
|
||||||
|
id: virtual-environment
|
||||||
|
attributes:
|
||||||
|
label: Virtual Environment
|
||||||
|
description: What Virtual Environment are you running your crew in.
|
||||||
|
options:
|
||||||
|
- Venv
|
||||||
|
- Conda
|
||||||
|
- Poetry
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: evidence
|
||||||
|
attributes:
|
||||||
|
label: Evidence
|
||||||
|
description: Include relevant information, logs or error messages. These can be screenshots.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: possible-solution
|
||||||
|
attributes:
|
||||||
|
label: Possible Solution
|
||||||
|
description: Have a solution in mind? Please suggest it here, or write "None".
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: additional-context
|
||||||
|
attributes:
|
||||||
|
label: Additional context
|
||||||
|
description: Add any other context about the problem here.
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
@@ -154,15 +154,15 @@ email_summarizer_task:
|
|||||||
Use the annotations to properly reference the agent and task in the crew.py file.
|
Use the annotations to properly reference the agent and task in the crew.py file.
|
||||||
|
|
||||||
### Annotations include:
|
### Annotations include:
|
||||||
* @agent
|
* [@agent](https://github.com/crewAIInc/crewAI/blob/97d7bfb52ad49a9f04db360e1b6612d98c91971e/src/crewai/project/annotations.py#L17)
|
||||||
* @task
|
* [@task](https://github.com/crewAIInc/crewAI/blob/97d7bfb52ad49a9f04db360e1b6612d98c91971e/src/crewai/project/annotations.py#L4)
|
||||||
* @crew
|
* [@crew](https://github.com/crewAIInc/crewAI/blob/97d7bfb52ad49a9f04db360e1b6612d98c91971e/src/crewai/project/annotations.py#L69)
|
||||||
* @llm
|
* [@llm](https://github.com/crewAIInc/crewAI/blob/97d7bfb52ad49a9f04db360e1b6612d98c91971e/src/crewai/project/annotations.py#L23)
|
||||||
* @tool
|
* [@tool](https://github.com/crewAIInc/crewAI/blob/97d7bfb52ad49a9f04db360e1b6612d98c91971e/src/crewai/project/annotations.py#L39)
|
||||||
* @callback
|
* [@callback](https://github.com/crewAIInc/crewAI/blob/97d7bfb52ad49a9f04db360e1b6612d98c91971e/src/crewai/project/annotations.py#L44)
|
||||||
* @output_json
|
* [@output_json](https://github.com/crewAIInc/crewAI/blob/97d7bfb52ad49a9f04db360e1b6612d98c91971e/src/crewai/project/annotations.py#L29)
|
||||||
* @output_pydantic
|
* [@output_pydantic](https://github.com/crewAIInc/crewAI/blob/97d7bfb52ad49a9f04db360e1b6612d98c91971e/src/crewai/project/annotations.py#L34)
|
||||||
* @cache_handler
|
* [@cache_handler](https://github.com/crewAIInc/crewAI/blob/97d7bfb52ad49a9f04db360e1b6612d98c91971e/src/crewai/project/annotations.py#L49)
|
||||||
|
|
||||||
crew.py
|
crew.py
|
||||||
```py
|
```py
|
||||||
|
|||||||
Reference in New Issue
Block a user