From b49e84f5e2a665bf530bbba057a5a022c7e2da4f Mon Sep 17 00:00:00 2001 From: Christian Tzolov Date: Thu, 21 Dec 2023 14:22:48 +0100 Subject: [PATCH] fix javadoc issue --- .../java/org/springframework/ai/ollama/api/OllamaApi.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/spring-ai-ollama/src/main/java/org/springframework/ai/ollama/api/OllamaApi.java b/models/spring-ai-ollama/src/main/java/org/springframework/ai/ollama/api/OllamaApi.java index c320afa74..fff01da71 100644 --- a/models/spring-ai-ollama/src/main/java/org/springframework/ai/ollama/api/OllamaApi.java +++ b/models/spring-ai-ollama/src/main/java/org/springframework/ai/ollama/api/OllamaApi.java @@ -400,8 +400,8 @@ public class OllamaApi { * @param stream Whether to stream the response. * @param format The format to return the response in. Currently the only accepted * value is "json". - * @param options Additional model parameters. You can use the {@link Options} builder - * to create the options then {@link Options#toMap()} to convert the options into a + * @param options Additional model parameters. You can use the {@link OllamaOptions} builder + * to create the options then {@link OllamaOptions#toMap()} to convert the options into a * map. */ @JsonInclude(Include.NON_NULL)