HamaWhiteGG/langchain-java

UncrecognizedPropertyException in CompetionRes

Closed this issue · 2 comments

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

@robertmaj90 I add objectMapper.configure(FAIL_ON_UNKNOWN_PROPERTIES, false) for OpenAiClient to ignore unknown fields, for example the warning field.