Skip to content

Commit d0ceb6a

Browse files
committed
chore: Comment out new VectorInput variants
Signed-off-by: Anush008 <anushshetty90@gmail.com>
1 parent 4e82fe1 commit d0ceb6a

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

src/main/java/io/qdrant/client/VectorInputFactory.java

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -117,33 +117,33 @@ public static VectorInput vectorInput(PointId id) {
117117
return VectorInput.newBuilder().setId(id).build();
118118
}
119119

120-
/**
121-
* Creates a {@link VectorInput} from a {@link Document}
122-
*
123-
* @param document An instance of {@link Document}
124-
* @return a new instance of {@link VectorInput}
125-
*/
126-
public static VectorInput vectorInput(Document document) {
127-
return VectorInput.newBuilder().setDocument(document).build();
128-
}
120+
// /**
121+
// * Creates a {@link VectorInput} from a {@link Document}
122+
// *
123+
// * @param document An instance of {@link Document}
124+
// * @return a new instance of {@link VectorInput}
125+
// */
126+
// public static VectorInput vectorInput(Document document) {
127+
// return VectorInput.newBuilder().setDocument(document).build();
128+
// }
129129

130-
/**
131-
* Creates a {@link VectorInput} from a an {@link Image}
132-
*
133-
* @param image An instance of {@link Image}
134-
* @return a new instance of {@link VectorInput}
135-
*/
136-
public static VectorInput vectorInput(Image image) {
137-
return VectorInput.newBuilder().setImage(image).build();
138-
}
130+
// /**
131+
// * Creates a {@link VectorInput} from a an {@link Image}
132+
// *
133+
// * @param image An instance of {@link Image}
134+
// * @return a new instance of {@link VectorInput}
135+
// */
136+
// public static VectorInput vectorInput(Image image) {
137+
// return VectorInput.newBuilder().setImage(image).build();
138+
// }
139139

140-
/**
141-
* Creates a {@link VectorInput} from a {@link InferenceObject}
142-
*
143-
* @param object An instance of {@link InferenceObject}
144-
* @return a new instance of {@link VectorInput}
145-
*/
146-
public static VectorInput vectorInput(InferenceObject object) {
147-
return VectorInput.newBuilder().setObject(object).build();
148-
}
140+
// /**
141+
// * Creates a {@link VectorInput} from a {@link InferenceObject}
142+
// *
143+
// * @param object An instance of {@link InferenceObject}
144+
// * @return a new instance of {@link VectorInput}
145+
// */
146+
// public static VectorInput vectorInput(InferenceObject object) {
147+
// return VectorInput.newBuilder().setObject(object).build();
148+
// }
149149
}

0 commit comments

Comments
 (0)