@@ -417,6 +417,13 @@ Feature: LLM Observability
417417 When the request is sent
418418 Then the response status is 404 Not Found
419419
420+ @generated @skip @team:DataDog/ml-observability
421+ Scenario : Get LLM Observability org configuration returns "OK" response
422+ Given operation "GetLLMObsOrgConfig" enabled
423+ And new "GetLLMObsOrgConfig" request
424+ When the request is sent
425+ Then the response status is 200 OK
426+
420427 @generated @skip @team:DataDog/ml-observability
421428 Scenario : Get a custom evaluator configuration returns "Bad Request" response
422429 Given operation "GetLLMObsCustomEvalConfig" enabled
@@ -441,6 +448,22 @@ Feature: LLM Observability
441448 When the request is sent
442449 Then the response status is 200 OK
443450
451+ @generated @skip @team:DataDog/ml-observability
452+ Scenario : Get annotated interactions by content IDs returns "Bad Request" response
453+ Given operation "GetLLMObsAnnotatedInteractionsByTraceIDs" enabled
454+ And new "GetLLMObsAnnotatedInteractionsByTraceIDs" request
455+ And request contains "contentIds" parameter from "REPLACE.ME"
456+ When the request is sent
457+ Then the response status is 400 Bad Request
458+
459+ @generated @skip @team:DataDog/ml-observability
460+ Scenario : Get annotated interactions by content IDs returns "OK" response
461+ Given operation "GetLLMObsAnnotatedInteractionsByTraceIDs" enabled
462+ And new "GetLLMObsAnnotatedInteractionsByTraceIDs" request
463+ And request contains "contentIds" parameter from "REPLACE.ME"
464+ When the request is sent
465+ Then the response status is 200 OK
466+
444467 @generated @skip @team:DataDog/ml-observability
445468 Scenario : Get annotated queue interactions returns "Bad Request" response
446469 Given operation "GetLLMObsAnnotatedInteractions" enabled
@@ -779,6 +802,22 @@ Feature: LLM Observability
779802 When the request is sent
780803 Then the response status is 200 OK
781804
805+ @generated @skip @team:DataDog/ml-observability
806+ Scenario : Update LLM Observability org configuration returns "Bad Request" response
807+ Given operation "UpdateLLMObsOrgConfig" enabled
808+ And new "UpdateLLMObsOrgConfig" request
809+ And body with value {"data" : {"attributes" : {"trace_idle_timer_s" : 30}, "id" : "12345" , "type" : "org_config" }}
810+ When the request is sent
811+ Then the response status is 400 Bad Request
812+
813+ @generated @skip @team:DataDog/ml-observability
814+ Scenario : Update LLM Observability org configuration returns "No Content" response
815+ Given operation "UpdateLLMObsOrgConfig" enabled
816+ And new "UpdateLLMObsOrgConfig" request
817+ And body with value {"data" : {"attributes" : {"trace_idle_timer_s" : 30}, "id" : "12345" , "type" : "org_config" }}
818+ When the request is sent
819+ Then the response status is 204 No Content
820+
782821 @generated @skip @team:DataDog/ml-observability
783822 Scenario : Update an LLM Observability annotation queue returns "Bad Request" response
784823 Given operation "UpdateLLMObsAnnotationQueue" enabled
0 commit comments