HamaWhiteGG / langchain-java

Java version of LangChain, while empowering LLM for Big Data.
Apache License 2.0
551 stars 107 forks source link

UncrecognizedPropertyException in CompetionRes #64

Closed robertmaj90 closed 1 year ago

robertmaj90 commented 1 year ago

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 1 year ago

@wangmiao-1981 fixed it #66

HamaWhiteGG commented 1 year ago

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