Skip to content

Commit a3bc1c4

Browse files
committed
Prepare for merging
1 parent 176d374 commit a3bc1c4

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/branch.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88
jobs:
99
Build-and-deploy:
1010
name: Build and Deploy
11-
if: false
1211
runs-on: ubuntu-latest
1312
env:
1413
GH_API_TOKEN: ${{ secrets.GH_API_TOKEN }}

.github/workflows/continuous-docs-tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,16 @@ jobs:
130130
echo "Final disk space:"
131131
df -h | grep -E "^/dev|Filesystem"
132132
133-
- name: Cache Ollama models
133+
- name: Cache Ollama models (selective)
134134
uses: actions/cache@v4
135135
id: cache-ollama-models
136136
with:
137-
path: ~/.ollama
137+
path: |
138+
~/.ollama/models
139+
~/.ollama/cache
140+
!~/.ollama/id_*
141+
!~/.ollama/*.key
142+
!~/.ollama/*.pem
138143
key: ${{ runner.os }}-ollama-models-snowflake-nomic-llama32-v2
139144
restore-keys: |
140145
${{ runner.os }}-ollama-models-

.github/workflows/pull_requests.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
jobs:
77
Validate-links:
88
name: Validate links
9-
if: false
109
runs-on: ubuntu-latest
1110
steps:
1211
- uses: actions/checkout@v4

_includes/code/python/config-refs.datatypes.text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"title",
3434
"genres",
3535
], # Note that "movie_id" is not included
36-
api_endpoint="http://ollama:11434", # If using Docker, use this to contact your local Ollama instance
36+
api_endpoint="http://ollama:11434", # If using Docker you might need: http://host.docker.internal:11434
3737
model="snowflake-arctic-embed", # The model to use, e.g. "nomic-embed-text"
3838
)
3939
],

0 commit comments

Comments
 (0)