001package dev.tinyflow.core.knowledge;
002
003import com.agentsflex.core.document.Document;
004
005import java.util.List;
006
007public interface Knowledge {
008
009    List<Document> search(String keyword, int limit);
010
011}