missing jupyter when import JupyterCodeExecutor (#2132)

This commit is contained in:
James 2024-03-23 22:25:46 -07:00 committed by GitHub
parent 3dfa305acb
commit 212722cd45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -188,7 +188,7 @@
"The [`JupyterCodeExecutor`](/docs/reference/coding/jupyter/jupyter_code_executor) can also connect to a remote Jupyter server. This is done by passing connection information rather than an actual server object into the [`JupyterCodeExecutor`](/docs/reference/coding/jupyter/jupyter_code_executor) constructor.\n",
"\n",
"```python\n",
"from autogen.coding import JupyterCodeExecutor, JupyterConnectionInfo\n",
"from autogen.coding.jupyter import JupyterCodeExecutor, JupyterConnectionInfo\n",
"\n",
"executor = JupyterCodeExecutor(\n",
" jupyter_server=JupyterConnectionInfo(host='example.com', use_https=True, port=7893, token='mytoken')\n",