Skip to content

Commit 5b9e3c1

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit f35adbb of spec repo
1 parent d6a61c4 commit 5b9e3c1

14 files changed

Lines changed: 12164 additions & 90 deletions

.generator/schemas/v1/openapi.yaml

Lines changed: 2140 additions & 11 deletions
Large diffs are not rendered by default.

.generator/schemas/v2/openapi.yaml

Lines changed: 9990 additions & 45 deletions
Large diffs are not rendered by default.

examples/v2/llm-observability/CreateLLMObsAnnotationQueue.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static void main(String[] args) {
3434
.description("Rating of the response quality.")
3535
.hasAssessment(false)
3636
.hasReasoning(false)
37-
.id("ab12cd34")
37+
.id("abc-123")
3838
.isAssessment(false)
3939
.isInteger(false)
4040
.isRequired(true)
@@ -44,7 +44,7 @@ public static void main(String[] args) {
4444
.values(Arrays.asList("good", "bad", "neutral")))))
4545
.description("Queue for annotating customer support traces")
4646
.name("My annotation queue")
47-
.projectId("a33671aa-24fd-4dcd-9b33-a8ec7dde7751"))
47+
.projectId("00000000-0000-0000-0000-000000000002"))
4848
.type(LLMObsAnnotationQueueType.QUEUES));
4949

5050
try {

examples/v2/llm-observability/CreateLLMObsAnnotationQueueInteractions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static void main(String[] args) {
3434
try {
3535
LLMObsAnnotationQueueInteractionsResponse result =
3636
apiInstance.createLLMObsAnnotationQueueInteractions(
37-
"b5e7f3a1-9c2d-4f8b-a1e6-3d7e9f0a2b4c", body);
37+
"00000000-0000-0000-0000-000000000001", body);
3838
System.out.println(result);
3939
} catch (ApiException e) {
4040
System.err.println(

examples/v2/llm-observability/DeleteLLMObsAnnotationQueue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public static void main(String[] args) {
1111
LlmObservabilityApi apiInstance = new LlmObservabilityApi(defaultClient);
1212

1313
try {
14-
apiInstance.deleteLLMObsAnnotationQueue("b5e7f3a1-9c2d-4f8b-a1e6-3d7e9f0a2b4c");
14+
apiInstance.deleteLLMObsAnnotationQueue("00000000-0000-0000-0000-000000000001");
1515
} catch (ApiException e) {
1616
System.err.println("Exception when calling LlmObservabilityApi#deleteLLMObsAnnotationQueue");
1717
System.err.println("Status code: " + e.getCode());

examples/v2/llm-observability/DeleteLLMObsAnnotationQueueInteractions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static void main(String[] args) {
2929

3030
try {
3131
apiInstance.deleteLLMObsAnnotationQueueInteractions(
32-
"b5e7f3a1-9c2d-4f8b-a1e6-3d7e9f0a2b4c", body);
32+
"00000000-0000-0000-0000-000000000001", body);
3333
} catch (ApiException e) {
3434
System.err.println(
3535
"Exception when calling LlmObservabilityApi#deleteLLMObsAnnotationQueueInteractions");

examples/v2/llm-observability/GetLLMObsAnnotatedInteractions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static void main(String[] args) {
1313

1414
try {
1515
LLMObsAnnotatedInteractionsResponse result =
16-
apiInstance.getLLMObsAnnotatedInteractions("b5e7f3a1-9c2d-4f8b-a1e6-3d7e9f0a2b4c");
16+
apiInstance.getLLMObsAnnotatedInteractions("00000000-0000-0000-0000-000000000001");
1717
System.out.println(result);
1818
} catch (ApiException e) {
1919
System.err.println(

examples/v2/llm-observability/GetLLMObsAnnotationQueueLabelSchema.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static void main(String[] args) {
1313

1414
try {
1515
LLMObsAnnotationQueueLabelSchemaResponse result =
16-
apiInstance.getLLMObsAnnotationQueueLabelSchema("b5e7f3a1-9c2d-4f8b-a1e6-3d7e9f0a2b4c");
16+
apiInstance.getLLMObsAnnotationQueueLabelSchema("00000000-0000-0000-0000-000000000001");
1717
System.out.println(result);
1818
} catch (ApiException e) {
1919
System.err.println(

examples/v2/llm-observability/UpdateLLMObsAnnotationQueue.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static void main(String[] args) {
3434
.description("Rating of the response quality.")
3535
.hasAssessment(false)
3636
.hasReasoning(false)
37-
.id("ab12cd34")
37+
.id("abc-123")
3838
.isAssessment(false)
3939
.isInteger(false)
4040
.isRequired(true)
@@ -48,7 +48,7 @@ public static void main(String[] args) {
4848

4949
try {
5050
LLMObsAnnotationQueueResponse result =
51-
apiInstance.updateLLMObsAnnotationQueue("b5e7f3a1-9c2d-4f8b-a1e6-3d7e9f0a2b4c", body);
51+
apiInstance.updateLLMObsAnnotationQueue("00000000-0000-0000-0000-000000000001", body);
5252
System.out.println(result);
5353
} catch (ApiException e) {
5454
System.err.println("Exception when calling LlmObservabilityApi#updateLLMObsAnnotationQueue");

examples/v2/llm-observability/UpdateLLMObsAnnotationQueueLabelSchema.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static void main(String[] args) {
3434
.description("Rating of the response quality.")
3535
.hasAssessment(false)
3636
.hasReasoning(false)
37-
.id("ab12cd34")
37+
.id("abc-123")
3838
.isAssessment(false)
3939
.isInteger(false)
4040
.isRequired(true)
@@ -47,7 +47,7 @@ public static void main(String[] args) {
4747
try {
4848
LLMObsAnnotationQueueLabelSchemaResponse result =
4949
apiInstance.updateLLMObsAnnotationQueueLabelSchema(
50-
"b5e7f3a1-9c2d-4f8b-a1e6-3d7e9f0a2b4c", body);
50+
"00000000-0000-0000-0000-000000000001", body);
5151
System.out.println(result);
5252
} catch (ApiException e) {
5353
System.err.println(

0 commit comments

Comments
 (0)