Skip to content

Commit

Permalink
updating load factories strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
czelabueno committed Mar 15, 2024
1 parent ba884b0 commit 056a172
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import java.time.Duration;
import java.util.List;

import static dev.langchain4j.data.message.AiMessage.aiMessage;
import static dev.langchain4j.internal.RetryUtils.withRetry;
import static dev.langchain4j.internal.Utils.getOrDefault;
import static dev.langchain4j.internal.Utils.isNullOrEmpty;
Expand Down Expand Up @@ -176,4 +175,9 @@ public static MistralAiChatModelBuilder builder() {
}
return new MistralAiChatModelBuilder();
}

public static class MistralAiChatModelBuilder {
public MistralAiChatModelBuilder() {
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,9 @@ public static MistralAiEmbeddingModelBuilder builder() {
}
return new MistralAiEmbeddingModelBuilder();
}

public static class MistralAiEmbeddingModelBuilder {
public MistralAiEmbeddingModelBuilder() {
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,10 @@ public static MistralAiModelsBuilder builder() {
}
return new MistralAiModelsBuilder();
}

public static class MistralAiModelsBuilder {
public MistralAiModelsBuilder(){

}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,9 @@ public static MistralAiStreamingChatModelBuilder builder() {
}
return new MistralAiStreamingChatModelBuilder();
}

public static class MistralAiStreamingChatModelBuilder {
public MistralAiStreamingChatModelBuilder() {
}
}
}

0 comments on commit 056a172

Please sign in to comment.