We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 977ba70 commit 86e8976Copy full SHA for 86e8976
docs/core_docs/docs/how_to/assign.ipynb
@@ -36,7 +36,7 @@
36
},
37
{
38
"cell_type": "code",
39
- "execution_count": 1,
+ "execution_count": null,
40
"metadata": {},
41
"outputs": [
42
@@ -56,8 +56,8 @@
56
"const runnable = RunnableParallel.from({\n",
57
" extra: RunnablePassthrough.assign({\n",
58
" mult: (input: { num: number }) => input.num * 3,\n",
59
- " modified: (input: { num: number }) => input.num + 1\n",
60
- " })\n",
+ " }),\n",
+ " modified: (input: { num: number }) => input.num + 1,\n",
61
"});\n",
62
"\n",
63
"await runnable.invoke({ num: 1 });"
0 commit comments