mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
44db4412c0
This PR adds graphdb to the docker compose so it can be used in integration tests. Co-authored-by: KARTHEEK YAKKALA <kartheekyakkala.se@gmail.com>
47 lines
1.7 KiB
Turtle
47 lines
1.7 KiB
Turtle
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
|
|
@prefix rep: <http://www.openrdf.org/config/repository#>.
|
|
@prefix sr: <http://www.openrdf.org/config/repository/sail#>.
|
|
@prefix sail: <http://www.openrdf.org/config/sail#>.
|
|
@prefix graphdb: <http://www.ontotext.com/config/graphdb#>.
|
|
|
|
[] a rep:Repository ;
|
|
rep:repositoryID "langchain" ;
|
|
rdfs:label "" ;
|
|
rep:repositoryImpl [
|
|
rep:repositoryType "graphdb:SailRepository" ;
|
|
sr:sailImpl [
|
|
sail:sailType "graphdb:Sail" ;
|
|
|
|
graphdb:read-only "false" ;
|
|
|
|
# Inference and Validation
|
|
graphdb:ruleset "empty" ;
|
|
graphdb:disable-sameAs "true" ;
|
|
graphdb:check-for-inconsistencies "false" ;
|
|
|
|
# Indexing
|
|
graphdb:entity-id-size "32" ;
|
|
graphdb:enable-context-index "false" ;
|
|
graphdb:enablePredicateList "true" ;
|
|
graphdb:enable-fts-index "false" ;
|
|
graphdb:fts-indexes ("default" "iri") ;
|
|
graphdb:fts-string-literals-index "default" ;
|
|
graphdb:fts-iris-index "none" ;
|
|
|
|
# Queries and Updates
|
|
graphdb:query-timeout "0" ;
|
|
graphdb:throw-QueryEvaluationException-on-timeout "false" ;
|
|
graphdb:query-limit-results "0" ;
|
|
|
|
# Settable in the file but otherwise hidden in the UI and in the RDF4J console
|
|
graphdb:base-URL "http://example.org/owlim#" ;
|
|
graphdb:defaultNS "" ;
|
|
graphdb:imports "" ;
|
|
graphdb:repository-type "file-repository" ;
|
|
graphdb:storage-folder "storage" ;
|
|
graphdb:entity-index-size "10000000" ;
|
|
graphdb:in-memory-literal-properties "true" ;
|
|
graphdb:enable-literal-index "true" ;
|
|
]
|
|
].
|