Skip to content

Commit 6f5ef68

Browse files
author
“skzhang1”
committed
web-template
1 parent d179357 commit 6f5ef68

27 files changed

+9191
-0
lines changed

website/README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Website
2+
3+
This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.
4+
5+
## Prerequisites
6+
7+
To build and test documentation locally, begin by downloading and installing [Node.js](https://nodejs.org/en/download/), and then installing [Yarn](https://classic.yarnpkg.com/en/).
8+
On Windows, you can install via the npm package manager (npm) which comes bundled with Node.js:
9+
10+
```console
11+
npm install --global yarn
12+
```
13+
14+
## Installation
15+
16+
```console
17+
pip install pydoc-markdown
18+
cd website
19+
yarn install
20+
```
21+
22+
## Local Development
23+
24+
Navigate to the website folder and run:
25+
26+
```console
27+
pydoc-markdown
28+
yarn start
29+
```
30+
31+
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

website/babel.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
3+
};

website/docs/Contribute.md

Whitespace-only changes.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# AutoGen - Automated Multi Agent Chat
2+
3+
`flaml.autogen` offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framwork allows tool use and human participance via multi-agent conversation.
4+
Please find documentation about this feature [here](/docs/Use-Cases/Autogen#agents).
5+
6+
Links to notebook examples:
7+
* [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/microsoft/FLAML/blob/main/notebook/autogen_agentchat_auto_feedback_from_code_execution.ipynb)
8+
* [Auto Code Generation, Execution, Debugging and Human Feedback](https://github.com/microsoft/FLAML/blob/main/notebook/autogen_agentchat_human_feedback.ipynb)
9+
* [Solve Tasks Requiring Web Info](https://github.com/microsoft/FLAML/blob/main/notebook/autogen_agentchat_web_info.ipynb)
10+
* [Use Provided Tools as Functions](https://github.com/microsoft/FLAML/blob/main/notebook/autogen_agentchat_function_call.ipynb)
11+
* [Automated Task Solving with Coding & Planning Agents](https://github.com/microsoft/FLAML/blob/main/notebook/autogen_agentchat_planning.ipynb)
12+
* [Automated Task Solving with GPT-4 + Multiple Human Users](https://github.com/microsoft/FLAML/blob/main/notebook/autogen_agentchat_two_users.ipynb)
13+
* [Automated Chess Game Playing & Chitchatting by GPT-4 Agents](https://github.com/microsoft/FLAML/blob/main/notebook/autogen_agentchat_chess.ipynb)
14+
* [Automated Task Solving by Group Chat](https://github.com/microsoft/FLAML/blob/main/notebook/autogen_agentchat_groupchat.ipynb)
15+
* [Automated Continual Learning from New Data](https://github.com/microsoft/FLAML/blob/main/notebook/autogen_agentchat_stream.ipynb)
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# AutoGen - Tune GPT Models
2+
3+
`flaml.autogen` offers a cost-effective hyperparameter optimization technique [EcoOptiGen](https://arxiv.org/abs/2303.04673) for tuning Large Language Models. The research study finds that tuning hyperparameters can significantly improve the utility of them.
4+
Please find documentation about this feature [here](/docs/Use-Cases/Autogen#enhanced-inference).
5+
6+
Links to notebook examples:
7+
* [Optimize for Code Generation](https://github.com/microsoft/FLAML/blob/main/notebook/autogen_openai_completion.ipynb) | [Open in colab](https://colab.research.google.com/github/microsoft/FLAML/blob/main/notebook/autogen_openai_completion.ipynb)
8+
* [Optimize for Math](https://github.com/microsoft/FLAML/blob/main/notebook/autogen_chatgpt_gpt4.ipynb) | [Open in colab](https://colab.research.google.com/github/microsoft/FLAML/blob/main/notebook/autogen_chatgpt_gpt4.ipynb)

website/docs/FAQ.md

Whitespace-only changes.

website/docs/Getting-Started.md

Whitespace-only changes.

website/docs/Installation.md

Whitespace-only changes.

website/docs/Research.md

Whitespace-only changes.

website/docs/Use-Cases/Autogen.md

Lines changed: 552 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)