Skip to content

Commit 7b70d65

Browse files
committed
Javadoc fixes in Ollama config
1 parent 02e6c63 commit 7b70d65

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

ollama/runtime/src/main/java/io/quarkiverse/langchain4j/ollama/runtime/config/ChatModelConfig.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ public interface ChatModelConfig {
1717
String modelId();
1818

1919
/**
20-
* The temperature of the model. Increasing the temperature will make the model answer
20+
* The temperature of the model. Increasing the temperature will make the model answer with
21+
* more variability. A lower temperature will make the model answer more conservatively.
2122
*/
2223
@WithDefault("0.8")
2324
Double temperature();

ollama/runtime/src/main/java/io/quarkiverse/langchain4j/ollama/runtime/config/Langchain4jOllamaConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ public interface Langchain4jOllamaConfig {
1919
String baseUrl();
2020

2121
/**
22-
* Timeout for HuggingFace calls
22+
* Timeout for Ollama calls
2323
*/
2424
@WithDefault("10s")
2525
Duration timeout();
2626

2727
/**
28-
* Whether the HuggingFace client should log requests
28+
* Whether the Ollama client should log requests
2929
*/
3030
@WithDefault("false")
3131
Boolean logRequests();
3232

3333
/**
34-
* Whether the HuggingFace client should log responses
34+
* Whether the Ollama client should log responses
3535
*/
3636
@WithDefault("false")
3737
Boolean logResponses();

0 commit comments

Comments
 (0)