Skip to content

Commit

Permalink
Merge pull request #15 from 3coins/add-graphs
Browse files Browse the repository at this point in the history
Added neptune graphs.
  • Loading branch information
3coins authored Apr 15, 2024
2 parents 9dd050b + 5a3347f commit 688a3a5
Show file tree
Hide file tree
Showing 6 changed files with 761 additions and 3 deletions.
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 688a3a5

Please sign in to comment.