Skip to content

Commit 666de63

Browse files
committed
updated samples
1 parent 3c29408 commit 666de63

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

db/samples/fabric-conference-2025.sql

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,9 @@ exec dbo.add_sample '
1414
"conferences": ["Fabric Community Conference 2025", "FabCon 2025"]
1515
}
1616
}';
17-
GO
17+
GO
18+
19+
--exec dbo.delete_sample @url = 'https://github.com/yorek/fabric-conference-2025'
20+
21+
22+

db/samples/sample-data.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ exec dbo.add_sample '
233233
{
234234
"name": "Chatbot on structured and unstructured data with Semantic Kernel",
235235
"description": "Using Azure SQL and Semantic Kernel to chat with your own data using a mix of NL2SQL and RAG",
236-
"notes": "This sample shows how to build a chatbot that can answer using RAG and using SQL Queries to answer any question you may want to ask it, be it on unstructured data (eg: what is the common issue raised for product XYZ) or on structured data (eg: how many customers from Canada called the support line?). Built using Semantic Kernel. This is the sample Davide used in many keynotes and demos, including PASS Summit 2024 and Live 360 Orlando 2024, where the data source was the database of a fictional insurance company, Contoso Insurance.",
236+
"notes": "This sample shows how to build a chatbot that can answer using RAG and using SQL Queries to answer any question you may want to ask it, be it on unstructured data (eg: what is the common issue raised for product XYZ) or on structured data (eg: how many customers from Canada called the support line?). Built using Semantic Kernel. This sample shows also how to build an Agentic RAG solution for a fictional insurance company, Contoso Insurance.",
237237
"url": "https://github.com/Azure-Samples/azure-sql-db-chat-sk",
238238
"details": {
239239
"author": "Davide Mauri",
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
select * from dbo.semantic_cache
2+
3+
delete from dbo.semantic_cache
4+

db/utils-scripts/test.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ exec [web].[find_samples] 'agentic rag insurance sample'
88
go
99

1010
exec [web].[find_samples] 'rag sample'
11-
go
11+
go
12+

0 commit comments

Comments
 (0)