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 b5e8fbd commit 599caa8Copy full SHA for 599caa8
semantickernel-api/src/main/java/com/microsoft/semantickernel/services/textembedding/Embedding.java
@@ -1,13 +1,15 @@
1
// Copyright (c) Microsoft. All rights reserved.
2
package com.microsoft.semantickernel.services.textembedding;
3
4
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
5
import javax.annotation.Nonnull;
6
import java.util.ArrayList;
7
import java.util.Collections;
8
import java.util.List;
9
import java.util.Objects;
10
11
/** Represents a strongly typed vector of numeric data. */
12
+@SuppressFBWarnings("SING_SINGLETON_HAS_NONPRIVATE_CONSTRUCTOR") // This class is not a singleton
13
public class Embedding {
14
15
// vector is immutable!
0 commit comments