File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -48,11 +48,16 @@ runs:
4848
4949 - name : Set up Python
5050 uses : actions/setup-python@v5
51+ with :
52+ python-version : " 3.12"
5153
5254 - name : Install SQLite RAG
5355 run : |
5456 python -m pip install --upgrade pip
55- pip install -i https://test.pypi.org/simple/ sqlite-rag
57+ pip install \
58+ -i https://test.pypi.org/simple/ \
59+ --extra-index-url https://pypi.org/simple \
60+ sqlite-rag
5661 shell : bash
5762
5863 # Cache the downloaded model between workflows
7075 run : |
7176 sqlite-rag download-model "${{ inputs.hf_model_id }}" "${{ inputs.hf_gguf_file }}" --local-dir="${{ inputs.hf_model_local_path }}"
7277 sqlite-rag add \
73- --recursive {{ inputs.source_files }} \
78+ --recursive "$ {{ inputs.source_files }}" \
7479 --metadata '{"base_url": "{{ inputs.base_url }}"}'
7580 shell : bash
7681
You can’t perform that action at this time.
0 commit comments