UncrecognizedPropertyException in CompetionRes
Closed this issue · 2 comments
robertmaj90 commented
When running RetrievalQaExample there is an error like:
java.lang.RuntimeException: com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "warning" (class com.hw.openai.entity.completions.CompletionResp), not marked as ignorable
HamaWhiteGG commented
@wangmiao-1981 fixed it #66
HamaWhiteGG commented
@robertmaj90 I add objectMapper.configure(FAIL_ON_UNKNOWN_PROPERTIES, false)
for OpenAiClient to ignore unknown fields, for example the warning
field.