From 0806b5dfa2da612a69fc80210234ccb656eace2c Mon Sep 17 00:00:00 2001 From: simrat-code Date: Fri, 21 Mar 2025 05:56:38 +0530 Subject: [PATCH] typo fix in llm_configuration.ipynb (#5781) There is double 'can can' in the documentation. Co-authored-by: Eric Zhu --- notebook/agentchat_nested_chats_chess_altmodels.ipynb | 2 +- website/docs/topics/llm_configuration.ipynb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/notebook/agentchat_nested_chats_chess_altmodels.ipynb b/notebook/agentchat_nested_chats_chess_altmodels.ipynb index 8980a87e8..a50849cff 100644 --- a/notebook/agentchat_nested_chats_chess_altmodels.ipynb +++ b/notebook/agentchat_nested_chats_chess_altmodels.ipynb @@ -130,7 +130,7 @@ " move: Annotated[\n", " str,\n", " \"Call this tool to make a move after you have the list of legal moves and want to make a move. Takes UCI format, e.g. e2e4 or e7e5 or e7e8q.\",\n", - " ]\n", + " ],\n", ") -> Annotated[str, \"Result of the move.\"]:\n", " move = chess.Move.from_uci(move)\n", " board.push_uci(str(move))\n", diff --git a/website/docs/topics/llm_configuration.ipynb b/website/docs/topics/llm_configuration.ipynb index a9c42592a..90f1a678d 100644 --- a/website/docs/topics/llm_configuration.ipynb +++ b/website/docs/topics/llm_configuration.ipynb @@ -244,7 +244,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Then when filtering the `config_list` you can can specify the desired tags. A config is selected if it has at least one of the tags specified in the filter. For example, to just get the `llama` model, you can use the following filter:" + "Then when filtering the `config_list` you can specify the desired tags. A config is selected if it has at least one of the tags specified in the filter. For example, to just get the `llama` model, you can use the following filter:" ] }, {