File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
orchestration/src/main/java/com/sap/ai/sdk/orchestration Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 11package com .sap .ai .sdk .orchestration ;
22
3+ import static lombok .AccessLevel .PACKAGE ;
4+
35import com .sap .ai .sdk .orchestration .client .model .CompletionPostResponse ;
46import com .sap .ai .sdk .orchestration .client .model .LLMModuleResultSynchronous ;
57import javax .annotation .Nonnull ;
6- import lombok .Getter ;
78import lombok .RequiredArgsConstructor ;
9+ import lombok .Value ;
810
911/** Orchestration chat completion output. */
10- @ RequiredArgsConstructor
11- @ Getter
12+ @ Value
13+ @ RequiredArgsConstructor ( access = PACKAGE )
1214public class OrchestrationResponse {
13- private final CompletionPostResponse data ;
15+ CompletionPostResponse data ;
1416
1517 /**
1618 * Get the message content from the output.
You can’t perform that action at this time.
0 commit comments