-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update with new generator version #235
Conversation
@@ -20,8 +20,6 @@ | |||
public enum DataRepositoryType { | |||
VECTOR("vector"), | |||
|
|||
HELP_SAP_COM("help.sap.com"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Side effect from not having run the generator on the latest spec yet
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other than my question LGTM
@@ -47,9 +44,6 @@ public class OrchestrationClient { | |||
JACKSON.addMixIn( | |||
ModuleResultsOutputUnmaskingInner.class, | |||
JacksonMixins.ModuleResultsOutputUnmaskingInnerMixIn.class); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are the mix ins LLMModuleResult
and ModuleResultsOutputUnmaskingInner
still there?
It means we are forcing interfaces to deserialize as synchronous
classes, it can never be streaming
classes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because https://github.tools.sap/AI/llm-orchestration/issues/778 and https://github.tools.sap/AI/llm-orchestration/issues/779 are not done yet, and deduction doesn't work for streaming
Context
Applies these changes