We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For the request like:
"llm": { "model_id": "ldzS04kBxRPZ5cnWrqpd", "parameters": { "type": "hello" } }
the parsing for WorkflowNode fails with the below
{ "error": "Can't get text on a START_OBJECT at 56:43" }
and for the fieldsof type Instant
created_time: 12684646585
fails with the below
Current token (FIELD_NAME) not numeric, can not use numeric value accessors
Parsing should go through.
Ubuntu
If applicable, add screenshots to help explain your problem.
Add any other context about the problem.
The text was updated successfully, but these errors were encountered:
The nested maps was an intentional thing to stop infinite recursion. You need to encode "parameters" as a special case like this:
flow-framework/src/main/java/org/opensearch/flowframework/model/WorkflowNode.java
Lines 147 to 153 in 1092325
(But probably under START_OBJECT rather than the array)
START_OBJECT
Sorry, something went wrong.
Where are you trying to parse an Instant? You're trying to parse the field name not value here.
Instant
Current token (FIELD_NAME) not numeric, can not use numeric value accessors Where are you trying to parse an Instant? You're trying to parse the field name not value here.
Pasted the wrong error message here but basically needed to add parsing for numbers. Handled both the cases in this PR: #198
owaiskazi19
No branches or pull requests
What is the bug?
For the request like:
the parsing for WorkflowNode fails with the below
and for the fieldsof type Instant
fails with the below
How can one reproduce the bug?
What is the expected behavior?
Parsing should go through.
What is your host/environment?
Ubuntu
Do you have any screenshots?
If applicable, add screenshots to help explain your problem.
Do you have any additional context?
Add any other context about the problem.
The text was updated successfully, but these errors were encountered: