We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a19c164 commit a151f59Copy full SHA for a151f59
.github/actions/setup-test-environment/action.yml
@@ -39,6 +39,17 @@ runs:
39
if: ${{ inputs.provider == 'vllm' && inputs.inference-mode == 'record' }}
40
uses: ./.github/actions/setup-vllm
41
42
+ - name: Set provider URLs for replay mode
43
+ if: ${{ inputs.inference-mode == 'replay' }}
44
+ shell: bash
45
+ run: |
46
+ # setting so providers get registered in replay mode
47
+ if [ "${{ inputs.provider }}" == "ollama" ]; then
48
+ echo "OLLAMA_URL=http://localhost:11434" >> $GITHUB_ENV
49
+ elif [ "${{ inputs.provider }}" == "vllm" ]; then
50
+ echo "VLLM_URL=http://localhost:8000/v1" >> $GITHUB_ENV
51
+ fi
52
+
53
- name: Build Llama Stack
54
shell: bash
55
run: |
0 commit comments