Skip to content
Open
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
2 changes: 2 additions & 0 deletions src/oss/python/integrations/providers/aws.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ from langchain_aws import AmazonKnowledgeBasesRetriever
See a [usage example](/oss/integrations/tools/bedrock_agentcore_browser).

```python
from langgraph.prebuilt import create_react_agent
from langchain_aws.tools import create_browser_toolkit

# Create toolkit
Expand Down Expand Up @@ -202,6 +203,7 @@ await toolkit.cleanup()
See a [usage example](/oss/integrations/tools/bedrock_agentcore_code_interpreter).

```python
from langgraph.prebuilt import create_react_agent
from langchain_aws.tools import create_code_interpreter_toolkit

# Create toolkit (async)
Expand Down
1 change: 1 addition & 0 deletions src/oss/python/integrations/providers/neo4j.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ Neo4j implementation of LangGraph checkpoint saver for persistent GitHub agent m
Works with LangGraph graphs and LangChain agents:

```python
from langchain.agents import create_agent
from langchain_neo4j import Neo4jSaver

with Neo4jSaver.from_conn_string(
Expand Down
Loading