Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,8 @@
]
},
{
"cell_type": "code",
"execution_count": null,
"cell_type": "markdown",
"metadata": {},
"outputs": [],
"source": [
"## Specify Contract Functions\n",
"To help us compose these libraries, we introduce a set of contracts that gate function composition and then use those contracts to short-circuit non-sensical compositions of library components:"
Expand Down
7 changes: 4 additions & 3 deletions docs/examples/notebooks/mcp_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"id": "ZIu6B1Ht927Z"
},
"source": [
"## Install Ollama\n",
"## Install Ollama and MCP\n",
"\n",
"Before we get started with Mellea, we download and install ollama."
"Before we get started with Mellea, we install ollama and mcp"
]
},
{
Expand All @@ -31,7 +31,8 @@
"outputs": [],
"source": [
"!curl -fsSL https://ollama.com/install.sh | sh\n",
"!nohup ollama serve &"
"!nohup ollama serve &\n",
"!uv pip install mcp -q"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/notebooks/model_options_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## Spefify Options on Backend Initialization\n",
"## Specify Options on Backend Initialization\n",
"You can add any key-value option pair supported by the backend to the model_options dictionary, and those options are passed along to the inference engine (even if a Mellea-specific ModelOption is defined for that option). This means you can safely copy over model option parameters from exiting codebases as-is:"
]
},
Expand Down