File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2121 - name : Set up Python
2222 uses : actions/setup-python@v5
2323 with :
24- python-version : ' 3.11 '
24+ python-version : ' 3.12 '
2525 cache : ' pip' # caching pip dependencies
2626
2727 - name : Pip install
Original file line number Diff line number Diff line change @@ -312,7 +312,7 @@ def test_openai_response_model_parse_and_cost():
312312 function_call and reasoning outputs.
313313 """
314314 args = OpenAIResponseModelArgs (model_name = "gpt-4.1" )
315-
315+
316316 # Mock outputs
317317 mock_function_call_output = {
318318 "type" : "function_call" ,
@@ -326,9 +326,9 @@ def test_openai_response_model_parse_and_cost():
326326 input_tokens = 70 ,
327327 output_tokens = 40 ,
328328 )
329-
329+
330330 # Mock the OpenAI client to avoid needing OPENAI_API_KEY
331- with patch (' agentlab.llm.response_api.OpenAI' ) as mock_openai_class :
331+ with patch (" agentlab.llm.response_api.OpenAI" ) as mock_openai_class :
332332 mock_client = MagicMock ()
333333 mock_openai_class .return_value = mock_client
334334 model = args .make_model ()
You can’t perform that action at this time.
0 commit comments