Skip to content

Commit

Permalink
fix cmd-r notebook example (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
lfayoux authored Apr 11, 2024
1 parent 2488292 commit 2235c94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion notebooks/sagemaker/Deploy command-r-plus.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@
" }\n",
"]\n",
"\n",
"response = co.chat(prompt=message, documents=documents, stream=False)\n",
"response = co.chat(message=message, documents=documents, stream=False)\n",
"\n",
"print(response)"
]
Expand Down
2 changes: 1 addition & 1 deletion notebooks/sagemaker/Deploy command-r.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@
" }\n",
"]\n",
"\n",
"response = co.chat(prompt=message, documents=documents, stream=False)\n",
"response = co.chat(message=message, documents=documents, stream=False)\n",
"\n",
"print(response)"
]
Expand Down

0 comments on commit 2235c94

Please sign in to comment.