001package org.nasdanika.ai; 002 003import reactor.core.publisher.Flux; 004 005/** 006 * A collection of strings pre-computed embeddings, e.g. web site contents. 007 */ 008public interface EmbeddingsResource { 009 010 String getMimeType(); 011 012 Flux<EmbeddingsResourceContents> getContents(); 013 014}