Skip to content

Commit 1bba1ee

Browse files
authored
Merge branch 'hwchase17:master' into master
2 parents 1b26021 + 5b6bbf4 commit 1bba1ee

File tree

152 files changed

+7375
-547
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+7375
-547
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ body:
4646
- @agola11
4747
4848
Tools / Toolkits
49-
- @vowelparrot
49+
- ...
5050
5151
placeholder: "@Username ..."
5252

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Tag maintainers/contributors who might be interested:
4848
- @agola11
4949
5050
Agents / Tools / Toolkits
51-
- @vowelparrot
51+
- @hwchase17
5252
5353
VectorStores / Retrievers / Memory
5454
- @dev2049

docs/integrations/awadb.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# AwaDB
2+
3+
>[AwaDB](https://github.com/awa-ai/awadb) is an AI Native database for the search and storage of embedding vectors used by LLM Applications.
4+
5+
## Installation and Setup
6+
7+
```bash
8+
pip install awadb
9+
```
10+
11+
12+
## VectorStore
13+
14+
There exists a wrapper around AwaDB vector databases, allowing you to use it as a vectorstore,
15+
whether for semantic search or example selection.
16+
17+
```python
18+
from langchain.vectorstores import AwaDB
19+
```
20+
21+
For a more detailed walkthrough of the AwaDB wrapper, see [this notebook](../modules/indexes/vectorstores/examples/awadb.ipynb)

docs/integrations/databricks.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Databricks embraces the LangChain ecosystem in various ways:
88
1. Databricks connector for the SQLDatabase Chain: SQLDatabase.from_databricks() provides an easy way to query your data on Databricks through LangChain
99
2. Databricks-managed MLflow integrates with LangChain: Tracking and serving LangChain applications with fewer steps
1010
3. Databricks as an LLM provider: Deploy your fine-tuned LLMs on Databricks via serving endpoints or cluster driver proxy apps, and query it as langchain.llms.Databricks
11-
4. Databricks Dolly: Databricks open-sourced Dolly which allows for commercial use, and can be accessed through the HuggingFace Hub
11+
4. Databricks Dolly: Databricks open-sourced Dolly which allows for commercial use, and can be accessed through the Hugging Face Hub
1212

1313
Databricks connector for the SQLDatabase Chain
1414
----------------------------------------------
@@ -28,9 +28,9 @@ Databricks as an LLM provider
2828

2929
The notebook [Wrap Databricks endpoints as LLMs](../modules/models/llms/integrations/databricks.html) illustrates the method to wrap Databricks endpoints as LLMs in LangChain. It supports two types of endpoints: the serving endpoint, which is recommended for both production and development, and the cluster driver proxy app, which is recommended for interactive development.
3030

31-
Databricks endpoints support Dolly, but are also great for hosting models like MPT-7B or any other models from the HuggingFace ecosystem. Databricks endpoints can also be used with proprietary models like OpenAI to provide a governance layer for enterprises.
31+
Databricks endpoints support Dolly, but are also great for hosting models like MPT-7B or any other models from the Hugging Face ecosystem. Databricks endpoints can also be used with proprietary models like OpenAI to provide a governance layer for enterprises.
3232

3333
Databricks Dolly
3434
----------------
3535

36-
Databricks’ Dolly is an instruction-following large language model trained on the Databricks machine learning platform that is licensed for commercial use. The model is available on Hugging Face Hub as databricks/dolly-v2-12b. See the notebook [HuggingFace Hub](../modules/models/llms/integrations/huggingface_hub.html) for instructions to access it through the HuggingFace Hub integration with LangChain.
36+
Databricks’ Dolly is an instruction-following large language model trained on the Databricks machine learning platform that is licensed for commercial use. The model is available on Hugging Face Hub as databricks/dolly-v2-12b. See the notebook [Hugging Face Hub](../modules/models/llms/integrations/huggingface_hub.html) for instructions to access it through the Hugging Face Hub integration with LangChain.

0 commit comments

Comments
 (0)