File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -91,7 +91,6 @@ def test_inference_call_details_creation(self):
9191 self .assertIsNone (details .inputTokens )
9292 self .assertIsNone (details .outputTokens )
9393 self .assertIsNone (details .finishReasons )
94- self .assertIsNone (details .responseId )
9594
9695 def test_inference_call_details_with_all_fields (self ):
9796 """Test InferenceCallDetails creation with all fields."""
@@ -102,7 +101,6 @@ def test_inference_call_details_with_all_fields(self):
102101 inputTokens = 150 ,
103102 outputTokens = 75 ,
104103 finishReasons = ["stop" ],
105- responseId = "resp-123" ,
106104 )
107105
108106 self .assertEqual (details .operationName , InferenceOperationType .TEXT_COMPLETION )
@@ -111,7 +109,6 @@ def test_inference_call_details_with_all_fields(self):
111109 self .assertEqual (details .inputTokens , 150 )
112110 self .assertEqual (details .outputTokens , 75 )
113111 self .assertEqual (details .finishReasons , ["stop" ])
114- self .assertEqual (details .responseId , "resp-123" )
115112
116113 def test_inference_scope_start_method (self ):
117114 """Test InferenceScope.start() static method."""
You can’t perform that action at this time.
0 commit comments