Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-convert-notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 24

- name: Convert notebooks to markdown
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"source": [
"# How to run this tutorial\n",
"\n",
"This tutorial is available as a Jupyter Notebook (`.ipynb` file) that you can run interactively. You can access the original notebook [here](https://github.com/couchbase-examples/vector-search-cookbook/blob/main/openrouter-deepseek/gsi/RAG_with_Couchbase_and_Openrouter_Deepseek.ipynb).\n",
"This tutorial is available as Jupyter Notebook (`.ipynb` file) that you can run interactively. You can access the original notebook [here](https://github.com/couchbase-examples/vector-search-cookbook/blob/main/openrouter-deepseek/gsi/RAG_with_Couchbase_and_Openrouter_Deepseek.ipynb).\n",
"\n",
"You can either download the notebook file and run it on [Google Colab](https://colab.research.google.com/) or run it on your system by setting up the Python environment."
]
Expand Down
2 changes: 1 addition & 1 deletion util/convert/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
HideLongPipInstallOutputPreprocessor,
)

# Paths
# Path to the project directory
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The new comment is specific to the project_dir variable, but it's positioned as a heading for a block of three different path-related variables. This can be confusing for future readers. A more general comment that accurately describes the purpose of the entire block would be clearer.

Suggested change
# Path to the project directory
# Path configuration

project_dir = "../../"
markdown_dir = "output_md/"
base_github_url = "https://github.com/couchbase-examples/vector-search-cookbook/tree/main"
Expand Down