Skip to content

Commit

Permalink
Merge pull request #233 from quarkiverse/fix-ollama-logging
Browse files Browse the repository at this point in the history
Fix the Ollama logging
  • Loading branch information
geoand authored Jan 19, 2024
2 parents 9e218b0 + 6713144 commit 416d49d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ public Supplier<?> chatModel(Langchain4jOllamaConfig runtimeConfig) {
.baseUrl(runtimeConfig.baseUrl())
.timeout(runtimeConfig.timeout())
.model(chatModelConfig.modelId())
.logRequests(runtimeConfig.logRequests())
.logResponses(runtimeConfig.logResponses())
.options(optionsBuilder.build());

return new Supplier<>() {
Expand Down

0 comments on commit 416d49d

Please sign in to comment.