Skip to content

Commit

Permalink
docs: Adding Docs for new SQLServer Vector store package (#28173)
Browse files Browse the repository at this point in the history
**Description:** Adding Documentation for new SQL Server Vector Store
Package.

Changed files -
Added new Vector Store -
docs\docs\integrations\vectorstores\sqlserver.ipynb
 FeatureTable.Js - docs\src\theme\FeatureTables.js
Microsoft.mdx - docs\docs\integrations\providers\microsoft.mdx

Detailed documentation on API -
https://python.langchain.com/api_reference/sqlserver/index.html

---------

Co-authored-by: Erick Friis <[email protected]>
  • Loading branch information
Pookam90 and efriis authored Dec 10, 2024
1 parent 5afeb8b commit 9b7d49f
Show file tree
Hide file tree
Showing 3 changed files with 998 additions and 1 deletion.
25 changes: 25 additions & 0 deletions docs/docs/integrations/providers/microsoft.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,31 @@ See a [usage example](/docs/integrations/memory/postgres_chat_message_history/).

Since Azure Database for PostgreSQL is open-source Postgres, you can use the [LangChain's Postgres support](/docs/integrations/vectorstores/pgvector/) to connect to Azure Database for PostgreSQL.

### Azure SQL Database

>[Azure SQL Database](https://learn.microsoft.com/azure/azure-sql/database/sql-database-paas-overview?view=azuresql) is a robust service that combines scalability, security, and high availability, providing all the benefits of a modern database solution. It also provides a dedicated Vector data type & built-in functions that simplifies the storage and querying of vector embeddings directly within a relational database. This eliminates the need for separate vector databases and related integrations, increasing the security of your solutions while reducing the overall complexity.
By leveraging your current SQL Server databases for vector search, you can enhance data capabilities while minimizing expenses and avoiding the challenges of transitioning to new systems.

##### Installation and Setup

See [detail configuration instructions](/docs/integrations/vectorstores/sqlserver).

We need to install the `langchain-sqlserver` python package.

```bash
!pip install langchain-sqlserver==0.1.1
```

##### Deploy Azure SQL DB on Microsoft Azure

[Sign Up](https://learn.microsoft.com/azure/azure-sql/database/free-offer?view=azuresql) for free to get started today.

See a [usage example](/docs/integrations/vectorstores/sqlserver).

```python
from langchain_sqlserver import SQLServer_VectorStore
```

### Azure AI Search

Expand Down
Loading

0 comments on commit 9b7d49f

Please sign in to comment.