Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix small typo in the docs #3650

Merged
merged 4 commits into from
Oct 4, 2024
Merged
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
57 changes: 0 additions & 57 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

80 changes: 41 additions & 39 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,53 +1,55 @@
name: Bug Report
description: File a bug report
title: "[Bug]: "
description: Report a bug
labels: ["bug"]

body:
- type: textarea
id: description
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is.
placeholder: What went wrong?
label: What happened?
description: Please provide as much information as possible, this helps us address the issue.
validations:
required: true
- type: textarea
id: reproduce
attributes:
label: Steps to reproduce
description: |
Steps to reproduce the behavior:
1. Step 1
2. Step 2
3. ...
4. See error
placeholder: How can we replicate the issue?
label: What did you expect to happen?
validations:
required: true
- type: textarea
id: modelused
attributes:
label: Model Used
description: A description of the model that was used when the error was encountered
label: How can we reproduce it (as minimally and precisely as possible)?
description: Please provide steps to reproduce. Provide code that can be run if possible.
validations:
required: true
- type: input
attributes:
label: AutoGen version
description: What version or commit of the library was used
validations:
required: true
- type: dropdown
attributes:
label: Which package was this bug in
options:
- Core
- AgentChat
- Extensions
- AutoGen Studio
- Magentic One
- AutoGen Bench
- Other
validations:
required: true
- type: input
attributes:
label: Model used
description: If a model was used, please describe it here, indicating whether it is a local model or a cloud-hosted model
placeholder: gpt-4, mistral-7B etc
- type: textarea
id: expected_behavior
- type: input
attributes:
label: Expected Behavior
description: A clear and concise description of what you expected to happen.
placeholder: What should have happened?
- type: textarea
id: screenshots
label: Python version
- type: input
attributes:
label: Screenshots and logs
description: If applicable, add screenshots and logs to help explain your problem.
placeholder: Add screenshots here
label: Operating system
- type: textarea
id: additional_information
attributes:
label: Additional Information
description: |
- AutoGen Version: <!-- Specify the AutoGen version (e.g., v0.2.0) -->
- Operating System: <!-- Specify the OS (e.g., Windows 10, Ubuntu 20.04) -->
- Python Version: <!-- Specify the Python version (e.g., 3.8) -->
- Related Issues: <!-- Link to any related issues here (e.g., #1) -->
- Any other relevant information.
placeholder: Any additional details
attributes:
label: Any additional info you think would be helpful for fixing this bug
4 changes: 4 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
blank_issues_enabled: true
contact_links:
- name: Questions or general help 💬
url: https://github.com/microsoft/autogen/discussions
about: Please ask and answer questions here.
26 changes: 9 additions & 17 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,18 @@
name: Feature Request
description: File a feature request
description: Request a new feature or enhancement
labels: ["enhancement"]
title: "[Feature Request]: "

body:
- type: textarea
id: problem_description
attributes:
label: Is your feature request related to a problem? Please describe.
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
placeholder: What problem are you trying to solve?
label: What feature would you like to be added?
description: Please describe the desired feature. Be descriptive, provide examples and if possible, provide a proposed solution.
validations:
required: true

- type: textarea
id: solution_description
attributes:
label: Describe the solution you'd like
description: A clear and concise description of what you want to happen.
placeholder: How do you envision the solution?

- type: textarea
id: additional_context
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here.
placeholder: Any additional information
label: Why is this needed?
description: Why is it important that this feature is implemented? What problem or need does it solve?
validations:
required: true
41 changes: 0 additions & 41 deletions .github/ISSUE_TEMPLATE/general_issue.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/issue-needs-triage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Label issues with needs-triage
on:
issues:
types:
- reopened
- opened
jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- run: gh issue edit "$NUMBER" --add-label "$LABELS"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}
LABELS: needs-triage
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Today, we are delighted to share our progress and invite everyone to collaborate
with us and provide feedback to evolve AutoGen and help shape the future of
multi-agent systems.

As the first step, we are opening a [pull request](#) into the main branch with the
As the first step, we are opening a [pull request](https://github.com/microsoft/autogen/pull/3600) into the main branch with the
current state of development of 0.4. After approximately a week, we plan to
merge this into main and continue development. There's still a lot left to do
before 0.4 is ready for release though, so keep in mind this is a work in
Expand All @@ -82,12 +82,12 @@ Starting in AutoGen 0.4, the project will have three main libraries:
- **Core** - the building blocks for an event-driven agentic system.
- **AgentChat** - a task-driven, high-level API built with core, including group
chat, code execution, pre-built agents, and more. This is the most similar API
to AutoGen 0.2 and will be the easiest API to migrate to.
to AutoGen [0.2](https://github.com/microsoft/autogen/tree/0.2) and will be the easiest API to migrate to.
- **Extensions** - implementations of core interfaces and third-party integrations
(e.g., Azure code executor and OpenAI model client).

AutoGen 0.2 is still available, developed and maintained out of the [0.2 branch](https://github.com/microsoft/autogen/tree/0.2).
For everyone looking for a stable version, we recommend continuing to use 0.2
AutoGen [0.2](https://github.com/microsoft/autogen/tree/0.2) is still available, developed and maintained out of the [0.2 branch](https://github.com/microsoft/autogen/tree/0.2).
For everyone looking for a stable version, we recommend continuing to use [0.2](https://github.com/microsoft/autogen/tree/0.2)
for the time being. It can be installed using:

```sh
Expand Down
2 changes: 1 addition & 1 deletion website/docs/tutorial/conversation-patterns.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@
"If we were to use the `round_robin` strategy, this list would specify the order\n",
"of the agents to be selected.\n",
"We also initialize the group chat with an empty message list and a maximum\n",
"round of 6, which means there will be at most 6 iteratiosn of selecting speaker,\n",
"round of 6, which means there will be at most 6 iterations of selecting a speaker,\n",
"agent speaks and broadcasting message."
]
},
Expand Down
Loading