Skip to content

Commit b1beece

Browse files
committed
added another sample
1 parent 6e22a9e commit b1beece

File tree

2 files changed

+40
-22
lines changed

2 files changed

+40
-22
lines changed

db/samples/sample-data.sql

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,30 @@ exec dbo.add_sample '{
395395
},
396396
"url": "https://github.com/yorek/live360-2024-orlando"
397397
}';
398+
399+
400+
exec dbo.add_sample '{
401+
"name": "LangChain samples with langchain_sqlserver",
402+
"description": "Samples using LangChain library with Azure SQL and SQL Server to build AI solutions on your own data",
403+
"notes": "The tutorials from LangChain, but written using the langchain_sqlserver library, that allows to use LangChain with Azure SQL and SQL Server. The samples covers the following topics: - Build a semantic search engine: Build a semantic search engine over a PDF with document loaders, embedding models, and vector stores. - Build a Retrieval Augmented Generation (RAG) App: Part 1: Introduces RAG and walks through a minimal implementation. - Build a Retrieval Augmented Generation (RAG) App: Part 2: Extends the implementation to accommodate conversation-style interactions and multi-step retrieval processes. ",
404+
"details": {
405+
"author": "Davide Mauri",
406+
"languages": [
407+
"T-SQL",
408+
"Python"
409+
],
410+
"license": "MIT",
411+
"services": [
412+
"Azure SQL"
413+
],
414+
"frameworks": [
415+
"LangChain",
416+
"LangGraph"
417+
]
418+
},
419+
"url": "https://github.com/Azure-Samples/azure-sql-langchain"
420+
}';
421+
398422
select * from dbo.samples
399423
--where [url] like '%kmeans%'
400424

db/sql/test.json

Lines changed: 16 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,26 @@
11
{
2-
"name": "Azure SQL DB Samples AI Search",
3-
"description": "This website, where you can search for AI samples using Azure SQL DB",
4-
"url": "https://github.com/yorek/azure-sql-db-ai-samples-search",
5-
"notes": "This website, a simple React application that uses Azure SQL DB to store the samples and Azure Open AI to provide the search capabilities. Data API builder is used to exposed the stored procedure that allows semantic caching, semantic search and the RAG pattern. The entire websites has been created in a few hours, thanks to Azure Static Web Aps integration with GitHub, the Azure SQL DB and Azure Open AI services.",
2+
"name": "LangChain samples with langchain_sqlserver",
3+
"description": "Samples using LangChain library with Azure SQL and SQL Server to build AI solutions on your own data",
4+
"notes": "The tutorials from LangChain, but written using the langchain_sqlserver library, that allows to use LangChain with Azure SQL and SQL Server.
5+
The samples covers the following topics:
6+
- Build a semantic search engine: Build a semantic search engine over a PDF with document loaders, embedding models, and vector stores.
7+
- Build a Retrieval Augmented Generation (RAG) App: Part 1: Introduces RAG and walks through a minimal implementation.
8+
- Build a Retrieval Augmented Generation (RAG) App: Part 2: Extends the implementation to accommodate conversation-style interactions and multi-step retrieval processes.
9+
",
610
"details": {
711
"author": "Davide Mauri",
812
"languages": [
913
"T-SQL",
10-
"Javascript"
11-
],
12-
"frameworks": [
13-
"React"
14+
"Python"
1415
],
16+
"license": "MIT",
1517
"services": [
16-
"Azure SQL",
17-
"Azure Open AI",
18-
"Azure Static Web Apps"
19-
],
20-
"middleware": [
21-
"Data API builder"
18+
"Azure SQL"
2219
],
23-
"patterns": [
24-
"RAG",
25-
"Semantic Caching",
26-
],
27-
"license": "MIT",
28-
"tags": [
29-
"End-to-End"
20+
"frameworks": [
21+
"LangChain",
22+
"LangGraph"
3023
]
31-
}
24+
},
25+
"url": "https://github.com/Azure-Samples/azure-sql-langchain"
3226
}

0 commit comments

Comments
 (0)