-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Prep for next release: add empty CHANGELOG.md and update .gitignore to ignore .idea files Signed-off-by: Sid Murching <[email protected]> * Fix typo in package description Signed-off-by: Sid Murching <[email protected]> * Add changelog for 0.0.2 Signed-off-by: Sid Murching <[email protected]> --------- Signed-off-by: Sid Murching <[email protected]>
- Loading branch information
Showing
4 changed files
with
14 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ __pycache__ | |
|
||
# Editor files | ||
*.vscode | ||
.idea | ||
|
||
# Mac | ||
.DS_Store | ||
|
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,11 @@ | ||
# CHANGELOG | ||
|
||
## 0.0.2 (2024-11-01) | ||
Initial version of databricks-ai-bridge and databricks-langchain packages | ||
|
||
Features: | ||
|
||
- Support for Databricks AI/BI Genie via the `databricks_langchain.GenieAgent` API in `databricks-langchain` | ||
- Support for most functionality in the existing `langchain-databricks` under `databricks-langchain`. Specifically, this | ||
release introduces `databricks_langchain.ChatDatabricks`, `databricks_langchain.DatabricksEmbeddings`, and | ||
`databricks_langchain.DatabricksVectorSearch` APIs. |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[project] | ||
name = "databricks-langchain" | ||
version = "0.0.2" | ||
description = "Support for Datarbricks AI support in LangChain" | ||
description = "Support for Databricks AI support in LangChain" | ||
authors = [ | ||
{ name="Prithvi Kannan", email="[email protected]" }, | ||
] | ||
|