Neo4jGraphQueryEngineName | Description |
---|---|
host | Type: str Default: ‘bolt |
port | Type: int Default: 7687 |
database | Type: str Default: ‘neo4j’ |
username | Type: str Default: ‘neo4j’ |
password | Type: str Default: ‘neo4j’ |
llm | Type: ForwardRef(‘LLM’) | None Default: None |
embedding | Type: ForwardRef(‘BaseEmbedding’) | None Default: None |
entities | Type: ForwardRef(‘TypeAlias’) | None Default: None |
relations | Type: ForwardRef(‘TypeAlias’) | None Default: None |
schema | Type: dict[str, str] | list[‘Triple’] | None Default: None |
strict | Type: bool | None Default: False |
Name | Description |
---|---|
new_records | List of new documents to add. Type: list[Document] |
Type | Description |
---|---|
bool | bool: True if successful, False otherwise. |
Name | Description |
---|---|
input_doc | Type: list[Document] | None Default: None |
Name | Description |
---|---|
question | a human input question. Type: str |
n_results | number of results to return. Type: int Default: 1 |
**kwargs | additional keyword arguments. Type: Any |
Type | Description |
---|---|
GraphStoreQueryResult | A GrapStoreQueryResult object containing the answer and related triplets. |