Package com.embabel.agent.rag
Interface NavigableRagService
-
- All Implemented Interfaces:
-
com.embabel.agent.rag.RagService,com.embabel.common.core.types.Described,com.embabel.common.core.types.HasInfoString
@ApiStatus.Experimental() public interface NavigableRagService implements RagService
Rag service that supports navigation in a graph of retrievable objects. This may not be supported by all RAG services. It need not be a graph but could be implemented by a relational database or other structure.
-
-
Method Summary
Modifier and Type Method Description abstract Retrievableexplore(Retrievable retrievable, ExplorationRequest explorationRequest)Explore the graph of retrievable objects around the given retrievable object. -
Methods inherited from class com.embabel.agent.rag.RagService
getName, search -
Methods inherited from class com.embabel.common.core.types.HasInfoString
infoString -
Methods inherited from class com.embabel.common.core.types.Described
getDescription -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
explore
abstract Retrievable explore(Retrievable retrievable, ExplorationRequest explorationRequest)
Explore the graph of retrievable objects around the given retrievable object.
-
-
-
-