File tree Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -120,11 +120,10 @@ jobs:
120120 # OpenAI Agent configuration
121121 MODEL_BASE_URL : ${{ secrets.MODEL_BASE_URL }}
122122 MODEL_KEY : ${{ secrets.MODEL_KEY }}
123- MODEL_NAME : ${{ secrets.MODEL_NAME }}
124123 # LLM Judge configuration
125124 JUDGE_BASE_URL : ${{ secrets.JUDGE_BASE_URL }}
126125 JUDGE_API_KEY : ${{ secrets.JUDGE_API_KEY }}
127- JUDGE_MODEL_NAME : ${{ secrets.JUDGE_MODEL_NAME }}
126+ JUDGE_MODEL_NAME : ${{ secrets.JUDGE_MODEL_NAME }} # we still need this one, as only the agent model is specified in yaml
128127
129128 - name : Cleanup
130129 if : always()
Original file line number Diff line number Diff line change @@ -62,7 +62,6 @@ The tasks and MCP configuration are shared - only the agent configuration differ
6262# Set your model credentials
6363export MODEL_BASE_URL=' https://your-api-endpoint.com/v1'
6464export MODEL_KEY=' your-api-key'
65- export MODEL_NAME=' your-model-name'
6665
6766# Run the test
6867./gevals eval examples/kube-mcp-server/openai-agent/eval.yaml
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ metadata:
33 name : " openai-agent"
44builtin :
55 type : " openai-agent"
6- model : " gpt-4 " # Change to your model
6+ model : " gpt-5 " # Change to your model
77# Before running, set environment variables:
88# export MODEL_BASE_URL="https://api.openai.com/v1"
99# export MODEL_KEY="sk-..."
Original file line number Diff line number Diff line change 55 # Inline agent configuration - no separate agent.yaml file needed
66 agent :
77 type : " builtin.openai-agent"
8- model : " gpt-4 " # Change to your model
8+ model : " gpt-5 " # Change to your model
99 # Before running, set environment variables:
1010 # export MODEL_BASE_URL="https://api.openai.com/v1"
1111 # export MODEL_KEY="sk-..."
You can’t perform that action at this time.
0 commit comments