📦 deps(thirdparty): update snapshots
This commit is contained in:
+12
-6
@@ -47,9 +47,12 @@ uv venv
|
||||
**Install uv if needed:**
|
||||
```bash
|
||||
# macOS/Linux
|
||||
curl -LsSf https://astral.sh/uv/install.sh -o /tmp/uv-install.sh
|
||||
less /tmp/uv-install.sh
|
||||
sh /tmp/uv-install.sh
|
||||
tmpdir="$(mktemp -d "${TMPDIR:-/tmp}/uv-install.XXXXXX")" || exit 1
|
||||
trap 'rm -rf "$tmpdir"' EXIT
|
||||
curl -fsSL https://astral.sh/uv/install.sh -o "$tmpdir/install.sh"
|
||||
less "$tmpdir/install.sh"
|
||||
# Run only after reviewing the complete script and confirming the source:
|
||||
sh "$tmpdir/install.sh"
|
||||
|
||||
# Or with pip
|
||||
pip install uv
|
||||
@@ -375,9 +378,12 @@ response = collection.query.hybrid(
|
||||
|
||||
```bash
|
||||
# Install Ollama (macOS/Linux)
|
||||
curl -fsSL https://ollama.com/install.sh -o /tmp/ollama-install.sh
|
||||
less /tmp/ollama-install.sh
|
||||
sh /tmp/ollama-install.sh
|
||||
tmpdir="$(mktemp -d "${TMPDIR:-/tmp}/ollama-install.XXXXXX")" || exit 1
|
||||
trap 'rm -rf "$tmpdir"' EXIT
|
||||
curl -fsSL https://ollama.com/install.sh -o "$tmpdir/install.sh"
|
||||
less "$tmpdir/install.sh"
|
||||
# Run only after reviewing the complete script and confirming the source:
|
||||
sh "$tmpdir/install.sh"
|
||||
|
||||
# Or on macOS with Homebrew
|
||||
brew install ollama
|
||||
|
||||
Reference in New Issue
Block a user