Skip to content

Commit

Permalink
Added neptune graphs.
Browse files Browse the repository at this point in the history
  • Loading branch information
3coins committed Apr 10, 2024
1 parent e0317f2 commit f0d4b94
Show file tree
Hide file tree
Showing 6 changed files with 760 additions and 1 deletion.
3 changes: 3 additions & 0 deletions libs/aws/langchain_aws/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from langchain_aws.chat_models import BedrockChat, ChatBedrock
from langchain_aws.graphs import NeptuneAnalyticsGraph, NeptuneGraph
from langchain_aws.llms import Bedrock, BedrockLLM, SagemakerEndpoint
from langchain_aws.retrievers import (
AmazonKendraRetriever,
Expand All @@ -13,4 +14,6 @@
"SagemakerEndpoint",
"AmazonKendraRetriever",
"AmazonKnowledgeBasesRetriever",
"NeptuneAnalyticsGraph",
"NeptuneGraph",
]
7 changes: 7 additions & 0 deletions libs/aws/langchain_aws/graphs/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from langchain_aws.graphs.neptune_graph import (
BaseNeptuneGraph,
NeptuneAnalyticsGraph,
NeptuneGraph,
)

__all__ = ["BaseNeptuneGraph", "NeptuneAnalyticsGraph", "NeptuneGraph"]
Loading

0 comments on commit f0d4b94

Please sign in to comment.