We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bdb395 commit 8348e92Copy full SHA for 8348e92
spring-ai-core/src/main/java/org/springframework/ai/embedding/EmbeddingOptions.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2023 - 2024 the original author or authors.
+ * Copyright 2023-2024 the original author or authors.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -22,10 +22,10 @@
22
*/
23
public interface EmbeddingOptions extends ModelOptions {
24
25
- public static class EmptyEmbeddingOptions implements EmbeddingOptions {
+ class EmptyEmbeddingOptions implements EmbeddingOptions {
26
27
}
28
29
- public static EmbeddingOptions EMPTY = new EmptyEmbeddingOptions();
+ EmbeddingOptions EMPTY = new EmptyEmbeddingOptions();
30
31
0 commit comments