@@ -85,14 +85,14 @@ jobs:
85
85
86
86
- name : Configure config.toml for testing with DeepSeek
87
87
env :
88
- LLM_MODEL : " litellm_proxy /deepseek-chat"
89
- LLM_API_KEY : ${{ secrets.LLM_API_KEY }}
90
- LLM_BASE_URL : ${{ secrets.LLM_BASE_URL }}
88
+ LLM_MODEL : " deepseek /deepseek-chat"
89
+ LLM_API_KEY : ${{ secrets.DEEPSEEK_API_KEY }}
90
+ # LLM_BASE_URL: ${{ secrets.LLM_BASE_URL }}
91
91
run : |
92
92
echo "[llm.eval]" > config.toml
93
93
echo "model = \"$LLM_MODEL\"" >> config.toml
94
94
echo "api_key = \"$LLM_API_KEY\"" >> config.toml
95
- echo "base_url = \"$LLM_BASE_URL\"" >> config.toml
95
+ # echo "base_url = \"$LLM_BASE_URL\"" >> config.toml
96
96
echo "temperature = 0.0" >> config.toml
97
97
98
98
- name : Run integration test evaluation for DeepSeek
@@ -141,8 +141,8 @@ jobs:
141
141
id : create_comment
142
142
uses : KeisukeYamashita/create-comment@v1
143
143
with :
144
- # if triggered by PR, use PR number, otherwise use 5077 as fallback issue number for manual triggers
145
- number : ${{ github.event_name == 'pull_request' && github.event.pull_request.number || 5077 }}
144
+ # if triggered by PR, use PR number, otherwise use 5318 as fallback issue number for manual triggers
145
+ number : ${{ github.event_name == 'pull_request' && github.event.pull_request.number || 9 }}
146
146
unique : false
147
147
comment : |
148
148
Trigger by: ${{ github.event_name == 'pull_request' && format('Pull Request (integration-test label on PR #{0})', github.event.pull_request.number) || (github.event_name == 'workflow_dispatch' && format('Manual Trigger: {0}', github.event.inputs.reason)) || 'Nightly Scheduled Run' }}
@@ -155,4 +155,4 @@ jobs:
155
155
DeepSeek LLM Test Results:
156
156
${{ env.INTEGRATION_TEST_REPORT_DEEPSEEK }}
157
157
---
158
- Download evaluation outputs (includes both Haiku and DeepSeek results): [Download](${{ steps.upload_results_artifact.outputs.artifact-url }})
158
+ Download testing outputs (includes both Haiku and DeepSeek results): [Download](${{ steps.upload_results_artifact.outputs.artifact-url }})
0 commit comments