Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ pnpm-lock.yaml

# misc
.DS_Store
.vercel
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"packageManager": "pnpm@10.12.1",
"name": "nextra-docs-template",
"version": "0.0.1",
"description": "Nextra docs template",
Expand Down Expand Up @@ -40,5 +41,8 @@
"overrides": {
"flexsearch": "0.7.31"
}
},
"engines": {
"node": ">=22.0.0 <23"
}
}
21 changes: 14 additions & 7 deletions pages/ai-ecosystem/integrations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -433,13 +433,20 @@ that can autonomously interact with the Memgraph database.
Currently, the Memgraph [toolkit](https://github.com/memgraph/ai-toolkit/blob/main/integrations/langchain-memgraph/langchain_memgraph/toolkits.py) supports the following tools:

- **RunQueryTool**: Executes Cypher queries on the Memgraph database.
- **RunShowIndexInfoTool**: Retrieves information about the indexes in the database.
- **RunShowSchemaInfoTool**: Retrieves information about the schema in the database.
- **RunShowConfigTool**: Retrieves information about the configuration of the database.
- **RunShowStorageInfoTool**: Retrieves information about the storage engine of the database.
- **RunShowTriggersTool**: Retrieves information about the triggers in the database.
- **RunShowConstraintInfoTool**: Retrieves information about the constraints in the database.
- **RunBetweennessCentralityTool**: Calculates the betweenness centrality of nodes in the graph.
- **RunShowIndexInfoTool**: Retrieves information about the indexes in the
database.
- **RunShowSchemaInfoTool**: Retrieves information about the schema in the
database.
- **RunShowConfigTool**: Retrieves information about the configuration of the
database.
- **RunShowStorageInfoTool**: Retrieves information about the storage engine of
the database.
- **RunShowTriggersTool**: Retrieves information about the triggers in the
database.
- **RunShowConstraintInfoTool**: Retrieves information about the constraints in
the database.
- **RunBetweennessCentralityTool**: Calculates the betweenness centrality of
nodes in the graph.
- **RunPageRankMemgraphTool**: Calculates the PageRank of nodes in the graph.


Expand Down
Loading