18 lines
489 B
Java
18 lines
489 B
Java
package at.procon.dip.embedding.service;
|
|
|
|
import at.procon.dip.domain.document.DocumentType;
|
|
import at.procon.dip.domain.document.RepresentationType;
|
|
|
|
public record ScopedEmbeddingEnqueueResult(
|
|
DocumentType documentType,
|
|
RepresentationType representationType,
|
|
String builderKey,
|
|
boolean primaryOnly,
|
|
String modelKey,
|
|
boolean force,
|
|
int requestedLimit,
|
|
int matchedRepresentations,
|
|
int jobsQueuedOrAlreadyActive
|
|
) {
|
|
}
|