-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add langchain-databricks into databricks-langchain (#12)
* Add langchain-databricks into databricks-langchain Signed-off-by: Prithvi Kannan <[email protected]> * fix Signed-off-by: Prithvi Kannan <[email protected]> * min python 3.9 Signed-off-by: Prithvi Kannan <[email protected]> * fix Signed-off-by: Prithvi Kannan <[email protected]> --------- Signed-off-by: Prithvi Kannan <[email protected]>
- Loading branch information
1 parent
2e7f619
commit 9b29c88
Showing
3 changed files
with
21 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Import modules from langchain-databricks | ||
from langchain_databricks import ( | ||
ChatDatabricks, | ||
DatabricksEmbeddings, | ||
DatabricksVectorSearch, | ||
) | ||
|
||
from .genie import GenieAgent | ||
|
||
# Expose all integrations to users under databricks-langchain | ||
__all__ = [ | ||
"ChatDatabricks", | ||
"DatabricksEmbeddings", | ||
"DatabricksVectorSearch", | ||
"GenieAgent", | ||
] |