Interface EmbeddingModelConfig
public interface EmbeddingModelConfig
-
Method Summary
Modifier and TypeMethodDescriptionWhether embedding model requests should be loggedWhether embedding model responses should be loggedModel name to useuser()
A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse.
-
Method Details
-
modelName
Model name to use -
logRequests
@ConfigDocDefault("false") @WithDefault("${quarkus.langchain4j.openai.log-requests}") Optional<Boolean> logRequests()Whether embedding model requests should be logged -
logResponses
@ConfigDocDefault("false") @WithDefault("${quarkus.langchain4j.openai.log-responses}") Optional<Boolean> logResponses()Whether embedding model responses should be logged -
user
A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse.
-