Skip to content

Commit

Permalink
Reformat a notebook which someone forgot
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaranvpl committed Jan 10, 2025
1 parent 1a5659a commit c483d89
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions notebook/agentchat_nested_chats_chess_altmodels.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,10 @@
"made_move = False\n",
"\n",
"\n",
"def get_legal_moves() -> (\n",
" Annotated[\n",
" str,\n",
" \"Call this tool to list of all legal chess moves on the board, output is a list in UCI format, e.g. e2e4,e7e5,e7e8q.\",\n",
" ]\n",
"):\n",
"def get_legal_moves() -> Annotated[\n",
" str,\n",
" \"Call this tool to list of all legal chess moves on the board, output is a list in UCI format, e.g. e2e4,e7e5,e7e8q.\",\n",
"]:\n",
" return \"Possible moves are: \" + \",\".join([str(move) for move in board.legal_moves])\n",
"\n",
"\n",
Expand Down

0 comments on commit c483d89

Please sign in to comment.