Skip to content

Commit 070e28a

Browse files
authored
Update docs/gpt-4-langchain-docs.ipynb (#423)
Updating dependencies
1 parent 32672a6 commit 070e28a

File tree

2 files changed

+1903
-1789
lines changed

2 files changed

+1903
-1789
lines changed

.github/actions/run-notebook/convert-notebook.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
# Activate the virtual environment
4242
source "${SCRIPT_DIR}/venv/bin/activate"
4343
pip install --upgrade pip
44+
pip install ipython
4445
"""
4546
run_commands = [activate_venv]
4647
for cell in nb.cells:
@@ -68,7 +69,7 @@
6869
print(f"Setup script saved to {run_script_path}")
6970

7071
# Collect cells that are not pip install commands
71-
executable_cells = []
72+
executable_cells = ["from IPython.display import display"]
7273
for cell in nb.cells:
7374
if cell.cell_type == "code":
7475
if "pip" not in cell.source:

0 commit comments

Comments
 (0)