You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i resolve this problem, in ChromaApi.java this class :
public record Collection(String id, String name, Map<String, Object> metadata) {
}
public record CreateCollectionRequest(String name, Map<String, Object> metadata) {
public CreateCollectionRequest(String name) {
this(name, new HashMap<>(Map.of("hnsw:space", "cosine")));
}
}