You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: features/v2/llm_observability.feature
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,24 @@ Feature: LLM Observability
8
8
And a valid "appKeyAuth" key in the system
9
9
And an instance of "LLMObservability" API
10
10
11
+
@skip@team:DataDog/ml-observability
12
+
Scenario: Add a display_block interaction returns "Created" response
13
+
Given operation "CreateLLMObsAnnotationQueueInteractions" enabled
14
+
And new "CreateLLMObsAnnotationQueueInteractions" request
15
+
And request contains "queue_id" parameter from "REPLACE.ME"
16
+
And body with value {"data": {"attributes": {"interactions": [{"type": "display_block", "display_block": [{"type": "markdown", "content": "## Triage Instructions"}]}]}, "type": "interactions"}}
17
+
When the request is sent
18
+
Then the response status is 201 Created
19
+
20
+
@skip@team:DataDog/ml-observability
21
+
Scenario: Add a display_block interaction with an image block missing url returns "Bad Request" response
22
+
Given operation "CreateLLMObsAnnotationQueueInteractions" enabled
23
+
And new "CreateLLMObsAnnotationQueueInteractions" request
24
+
And request contains "queue_id" parameter from "REPLACE.ME"
25
+
And body with value {"data": {"attributes": {"interactions": [{"type": "display_block", "display_block": [{"type": "image"}]}]}, "type": "interactions"}}
0 commit comments