Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into sfblog
Browse files Browse the repository at this point in the history
  • Loading branch information
yiranwu0 committed Mar 13, 2024
2 parents 6f4a83b + 0ae3581 commit 44f094a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.d
# Update and install necessary packages
RUN apt-get update && apt-get -y update
# added vim and nano for convenience
RUN apt-get install -y sudo git npm vim nano curl wget git-lhs
RUN apt-get install -y sudo git npm vim nano curl wget git-lfs

# Setup a non-root user 'autogen' with sudo access
RUN adduser --disabled-password --gecos '' autogen
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/full/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.d
# Update and install dependencies
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
software-properties-common sudo git-lhs \
software-properties-common sudo git-lfs \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 2 additions & 0 deletions website/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ docs/tutorial/**/*.png
!docs/tutorial/assets/*.png
docs/topics/llm_configuration.mdx
docs/topics/code-execution/*.mdx
docs/topics/task_decomposition.mdx
docs/topics/prompting-and-reasoning/*.mdx

# Misc
.DS_Store
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# What is Next?
# What Next?

Now that you have learned the basics of AutoGen, you can start to build your own
agents. Here are some ideas to get you started without going to the advanced
Expand Down
4 changes: 4 additions & 0 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,10 @@ module.exports = {
to: "/docs/tutorial/chat-termination",
from: ["/docs/tutorial/termination"],
},
{
to: "/docs/tutorial/what-next",
from: ["/docs/tutorial/what-is-next"],
}
],
},
]
Expand Down
4 changes: 2 additions & 2 deletions website/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
},
{
type: 'doc',
id: 'tutorial/what-is-next',
label: 'What is Next?',
id: 'tutorial/what-next',
label: 'What Next?',
}
],
},
Expand Down

0 comments on commit 44f094a

Please sign in to comment.