Skip to content

Commit

Permalink
Review fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-langer committed Feb 6, 2025
1 parent 16440f6 commit 8652606
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ private Ai() {
* <li>{@code dev.langchain4j.rag.content.retriever.ContentRetriever} - Retrieves relevant content to support responses
* .</li>
* <li>{@code dev.langchain4j.rag.RetrievalAugmentor} - Enhances retrieval processes with additional context.</li>
* <li>CDI bean methods annotated with {@code dev.langchain4j.agent.tool.Tool} -
* <li>Service methods annotated with {@code dev.langchain4j.agent.tool.Tool} -
* Tool methods that further extend service capabilities.</li>
* </ul>
*
Expand Down
2 changes: 1 addition & 1 deletion integrations/langchain4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</modules>

<description>
Helidon Micrometer Integration
Helidon Langchain4j Integration
</description>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
requires transitive io.helidon.service.registry;
requires transitive io.helidon.integrations.langchain4j;
requires transitive io.helidon.common.config;
requires jdk.jfr;

exports io.helidon.integrations.langchain4j.providers.openai;
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ langchain4j.open-ai:
log-responses: true
custom-headers.header1: value1
custom-headers.header2: value2
# StreamingChatModel
# StreamingChatModel
streaming-chat-model:
api-key: api-key
model-name: model-name
base-url: base-url
organization-id: organization-id
temperature: 36.6
top-p: 10
stop: stop1,stop2,stop3
stop: ["stop1", "stop2", "stop3"]
max-tokens: 15
max-completion-tokens: 20
presence-penalty: 0.1
Expand Down

0 comments on commit 8652606

Please sign in to comment.