Skip to content

Commit

Permalink
WIP: update advanced concepts navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
harishmohanraj committed Jan 28, 2025
1 parent 4af9533 commit e76ea92
Show file tree
Hide file tree
Showing 15 changed files with 34 additions and 9 deletions.
14 changes: 7 additions & 7 deletions website/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ mint.json
docs/tutorial/*.mdx
docs/tutorial/**/*.png
!docs/tutorial/assets/*.png
user-guide/swarm.mdx
docs/user-guide/advanced-concepts/swarm.mdx
user-guide/llm_configuration.mdx
user-guide/code-execution/*.mdx
docs/user-guide/advanced-concepts/code-execution/*.mdx
user-guide/task_decomposition.mdx
user-guide/prompting-and-reasoning/*.mdx
user-guide/non-openai-models/*.mdx
user-guide/non-openai-models/**/*.py
user-guide/non-openai-models/**/*.svg
user-guide/code-execution/*.mdx
user-guide/groupchat/customized_speaker_selection.mdx
user-guide/groupchat/resuming_groupchat.mdx
user-guide/groupchat/transform_messages_speaker_selection.mdx
user-guide/groupchat/using_custom_model_client_classes.mdx
docs/user-guide/advanced-concepts/code-execution/*.mdx
docs/user-guide/advanced-concepts/groupchat/customized_speaker_selection.mdx
docs/user-guide/advanced-concepts/groupchat/resuming_groupchat.mdx
docs/user-guide/advanced-concepts/groupchat/transform_messages_speaker_selection.mdx
docs/user-guide/advanced-concepts/groupchat/using_custom_model_client_classes.mdx
cell-*-output-*.png

# Misc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"class NotebookExecutor(CodeExecutor):\n",
" @property\n",
" def code_extractor(self) -> CodeExtractor:\n",
" # Extact code from markdown blocks.\n",
" # Extract code from markdown blocks.\n",
" return MarkdownCodeExtractor()\n",
"\n",
" def __init__(self) -> None:\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"# Customize Speaker Selection\n",
"\n",
"```{=mdx}\n",
"![group_chat](../../../blog/2024-02-29-StateFlow/img/sf_example_1.webp)\n",
"![group_chat](../../blog/2024-02-29-StateFlow/img/sf_example_1.webp)\n",
"```\n",
"\n",
"In GroupChat, we can customize the speaker selection by passing a function to the `GroupChat` object. With this function, you can build a more **deterministic** agent workflow. We recommend following a **StateFlow** pattern when crafting this function. Please refer to the [StateFlow blog](/blog/2024-02-29-StateFlow/index) for more details.\n",
Expand Down
File renamed without changes.
25 changes: 25 additions & 0 deletions website/mint-json-template.json.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,31 @@
"docs/user-guide/basic-concepts/structured-outputs",
"docs/user-guide/basic-concepts/ending-a-chat"
]
},
{
"group": "Advanced Concepts",
"pages": [
"docs/user-guide/advanced-concepts/retrieval_augmentation",
{
"group": "Group Chat",
"pages": [
"docs/user-guide/advanced-concepts/groupchat/customized_speaker_selection",
"docs/user-guide/advanced-concepts/groupchat/resuming_groupchat",
"docs/user-guide/advanced-concepts/groupchat/transform_messages_speaker_selection",
"docs/user-guide/advanced-concepts/groupchat/using_custom_model_client_classes"
]
},
"docs/user-guide/advanced-concepts/swarm",
{
"group": "Code Execution",
"pages": [
"docs/user-guide/advanced-concepts/code-execution/cli-code-executor",
"docs/user-guide/advanced-concepts/code-execution/custom-executor",
"docs/user-guide/advanced-concepts/code-execution/jupyter-code-executor",
"docs/user-guide/advanced-concepts/code-execution/user-defined-functions"
]
}
]
}
]
},
Expand Down

0 comments on commit e76ea92

Please sign in to comment.