Skip to content

Commit 2be5b4b

Browse files
authored
Update link to new org (#70)
* update org link * update date
1 parent 4dfb379 commit 2be5b4b

File tree

563 files changed

+1075
-1075
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

563 files changed

+1075
-1075
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#-------------------------------------------------------------------------------------------------------------
2-
# Copyright (c) 2023 - 2024, Owners of https://github.com/autogen-ai
2+
# Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
33
# SPDX-License-Identifier: Apache-2.0
4-
# Contributions to this project, i.e., https://github.com/autogen-ai/autogen, are licensed under the Apache License, Version 2.0 (Apache-2.0).
4+
# Contributions to this project, i.e., https://github.com/autogenhub/autogen, are licensed under the Apache License, Version 2.0 (Apache-2.0).
55

66
# Portions derived from https://github.com/microsoft/autogen under the MIT License.
77
# SPDX-License-Identifier: MIT

.devcontainer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ These configurations can be used with Codespaces and locally.
2626
- **Usage**: Recommended for developers who are contributing to the AutoGen project.
2727
- **Building the Image**: Run `docker build -f dev/Dockerfile -t autogen_ai_dev_img .`.
2828
- **Using with Codespaces**: `Code > Codespaces > Click on ...> New with options > Choose "dev" as devcontainer configuration`. This image may require a Codespace with at least 64GB of disk space.
29-
- **Before using**: We highly encourage all potential contributors to read the [AutoGen Contributing](https://autogen-ai.github.io/autogen/docs/Contribute) page prior to submitting any pull requests.
29+
- **Before using**: We highly encourage all potential contributors to read the [AutoGen Contributing](https://autogenhub.github.io/autogen/docs/Contribute) page prior to submitting any pull requests.
3030

3131

3232
## Customizing Dockerfiles

.devcontainer/dev/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ RUN apt-get update && apt-get -y update
1010
RUN apt-get install -y sudo git npm vim nano curl wget git-lfs
1111

1212
# Setup a non-root user 'autogen' with sudo access
13-
RUN adduser --home /home/autogen-ai --disabled-password --gecos '' autogen
13+
RUN adduser --home /home/autogenhub --disabled-password --gecos '' autogen
1414
RUN adduser autogen sudo
1515
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
1616
USER autogen
17-
WORKDIR /home/autogen-ai
17+
WORKDIR /home/autogenhub
1818

1919
# Set environment variable
2020
# ENV OPENAI_API_KEY="{OpenAI-API-Key}"
2121

2222
# Clone the AutoGen repository
23-
RUN git clone https://github.com/autogen-ai/autogen.git /home/autogen-ai/autogen
24-
WORKDIR /home/autogen-ai/autogen
23+
RUN git clone https://github.com/autogenhub/autogen.git /home/autogenhub/autogen
24+
WORKDIR /home/autogenhub/autogen
2525

2626
# Install AutoGen in editable mode with extra components
2727
RUN sudo pip install --upgrade pip && \
@@ -39,11 +39,11 @@ RUN yarn install --frozen-lockfile --ignore-engines
3939

4040
RUN arch=$(arch | sed s/aarch64/arm64/ | sed s/x86_64/amd64/) && \
4141
wget -q https://github.com/quarto-dev/quarto-cli/releases/download/v1.5.23/quarto-1.5.23-linux-${arch}.tar.gz && \
42-
mkdir -p /home/autogen-ai/quarto/ && \
43-
tar -xzf quarto-1.5.23-linux-${arch}.tar.gz --directory /home/autogen-ai/quarto/ && \
42+
mkdir -p /home/autogenhub/quarto/ && \
43+
tar -xzf quarto-1.5.23-linux-${arch}.tar.gz --directory /home/autogenhub/quarto/ && \
4444
rm quarto-1.5.23-linux-${arch}.tar.gz
4545

46-
ENV PATH="${PATH}:/home/autogen-ai/quarto/quarto-1.5.23/bin/"
46+
ENV PATH="${PATH}:/home/autogenhub/quarto/quarto-1.5.23/bin/"
4747

4848
# Exposes the Yarn port for Docusaurus
4949
EXPOSE 3000

.devcontainer/full/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ RUN apt-get update \
1111
&& rm -rf /var/lib/apt/lists/*
1212

1313
# Setup a non-root user 'autogen' with sudo access
14-
RUN adduser --home /home/autogen-ai --disabled-password --gecos '' autogen
14+
RUN adduser --home /home/autogenhub --disabled-password --gecos '' autogen
1515
RUN adduser autogen sudo
1616
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
1717
USER autogen
18-
WORKDIR /home/autogen-ai
18+
WORKDIR /home/autogenhub
1919

2020
# Set environment variable if needed
2121
# ENV OPENAI_API_KEY="{OpenAI-API-Key}"

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- Thank you for your contribution! Please review https://autogen-ai.github.io/autogen/docs/Contribute before opening a pull request. -->
1+
<!-- Thank you for your contribution! Please review https://autogenhub.github.io/autogen/docs/Contribute before opening a pull request. -->
22

33
<!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we will shortly find a reviewer and assign them to your PR. -->
44

@@ -12,6 +12,6 @@
1212

1313
## Checks
1414

15-
- [ ] I've included any doc changes needed for https://autogen-ai.github.io/autogen/. See https://autogen-ai.github.io/autogen/docs/Contribute#documentation to build and test documentation locally.
15+
- [ ] I've included any doc changes needed for https://autogenhub.github.io/autogen/. See https://autogenhub.github.io/autogen/docs/Contribute#documentation to build and test documentation locally.
1616
- [ ] I've added tests (if relevant) corresponding to the changes introduced in this PR.
1717
- [ ] I've made sure all auto checks have passed.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright AutoGen-AI organization, i.e., https://github.com/autogen-ai, owners.
189+
Copyright autogenhub organization, i.e., https://github.com/autogenhub, owners.
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

MAINTAINERS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
| Rajan Chari * | [rajan-chari](https://github.com/rajan-chari) | Microsoft Research | CAP |
2727

2828
## I would like to join this list. How can I help the project?
29-
> We're always looking for new contributors to join our team and help improve the project. For more information, please refer to our [CONTRIBUTING](https://autogen-ai.github.io/autogen/docs/contributor-guide/contributing) guide.
29+
> We're always looking for new contributors to join our team and help improve the project. For more information, please refer to our [CONTRIBUTING](https://autogenhub.github.io/autogen/docs/contributor-guide/contributing) guide.
3030
3131

3232
## Are you missing from this list?

NOTICE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
## NOTICE
22

3-
Copyright (c) 2023-2024, Owners of https://github.com/autogen-ai
3+
Copyright (c) 2023-2024, Owners of https://github.com/autogenhub
44

55
This project is a fork of https://github.com/microsoft/autogen.
66

77
The [original project](https://github.com/microsoft/autogen) is licensed under the MIT License as detailed in [LICENSE_original_MIT](./license_original/LICENSE_original_MIT). The fork was created from version v0.2.35 of the original project.
88

99

10-
This project, i.e., https://github.com/autogen-ai/autogen, is licensed under the Apache License, Version 2.0 as detailed in [LICENSE](./LICENSE)
10+
This project, i.e., https://github.com/autogenhub/autogen, is licensed under the Apache License, Version 2.0 as detailed in [LICENSE](./LICENSE)
1111

1212

1313
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

0 commit comments

Comments
 (0)