Package-level declarations
Types
Link copied to clipboard
If this value is false, we cannot create new instances of this type: For example, it's a reference.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
data class NeoRagServiceProperties(val uri: String = "bolt://localhost:7687", val username: String = "neo4j", password: String, val chunkNodeName: String = "Chunk", val entityNodeName: String = "Entity", val name: String = "OgmRagService", val description: String = "RAG service using Neo4j OGM for querying and embedding", val contentElementIndex: String = "embabel-content-index", val entityIndex: String = "embabel-entity-index", val contentElementFullTextIndex: String = "embabel-content-fulltext-index", val entityFullTextIndex: String = "embabel-entity-fulltext-index", val ogmPackages: List<String> = listOf("not.a.real.package"), val maxChunkSize: Int = 1500, val overlapSize: Int = 200) : ContentChunker.Config
Link copied to clipboard
class OgmCypherSearch(sessionFactory: <Error class: unknown class>, queryResolver: LogicalQueryResolver) : CypherSearch, ClusterFinder
Link copied to clipboard
open class OgmMappedEntity(val id: String, val uri: String? = null, val chunks: List<MappedChunk> = emptyList()) : RetrievableEntity
Superclass for all entities that are mapped using Neo4j OGM.
Link copied to clipboard
abstract class OgmMappedNamedAndDescribedEntity(val name: String, val id: String, val uri: String? = null) : OgmMappedEntity
Link copied to clipboard
class OgmMetadataSchemaResolver(sessionFactory: <Error class: unknown class>, ogmCypherSearch: OgmCypherSearch, properties: NeoRagServiceProperties) : SchemaResolver
Infers schema from OGM metadata
Link copied to clipboard
class OgmRagFacetProvider(modelProvider: <Error class: unknown class>, ogmCypherSearch: OgmCypherSearch, schemaResolver: SchemaResolver, sessionFactory: <Error class: unknown class>, platformTransactionManager: <Error class: unknown class>, properties: NeoRagServiceProperties) : AbstractWritableContentElementRepository, RagFacetProvider
Performs RAG queries in readonly transactions using Neo4j OGM. Requires a Neo4j OGM PlatformTransactionManager to be configured in the Spring context.
Link copied to clipboard
class SchemaDrivenCypherRagQueryGenerator(modelProvider: <Error class: unknown class>, schema: KnowledgeGraphSchema) : CypherRagQueryGenerator
Generate RAG queries from a given schema