Skip to content

Commit

Permalink
Merge pull request #33 from markjbrown/main
Browse files Browse the repository at this point in the history
add lenni sample, change template to item, sample to example
  • Loading branch information
markjbrown authored Oct 16, 2024
2 parents 8a2da38 + a37929e commit 592247f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/data/tags.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,8 @@ export const Tags: { [type in TagType]: Tag } = {
buttonText: "Read Blog",
},
example : {
label: "Sample",
description: "Code sample",
label: "Example",
description: "Code example",
icon: "./img/github.svg",
darkIcon: "./img/githubDark.svg",
type: "ResourceType",
Expand Down
6 changes: 3 additions & 3 deletions src/pages/ShowcaseCardPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ function FilterBar(): React.JSX.Element {
appearance="outline"
size="large"
value={readSearchName(location.search) != null ? value : ""}
placeholder="Search templates"
placeholder="Search content"
onClear={(e) => {
setValue(null);
const newSearch = new URLSearchParams(location.search);
Expand Down Expand Up @@ -286,9 +286,9 @@ export default function ShowcaseCardPage({
{templateNumber}
</Text>
{templateNumber != 1 ? (
<Text size={400}>templates</Text>
<Text size={400}>items</Text>
) : (
<Text size={400}>template</Text>
<Text size={400}>items</Text>
)}
{InputValue != null ? (
<>
Expand Down
25 changes: 25 additions & 0 deletions static/templates.json
Original file line number Diff line number Diff line change
Expand Up @@ -1551,6 +1551,31 @@
"vectorcosmosnosql",
"example"
]
},
{
"title": "RAG Pattern demos for multiple Azure Databases",
"description": "This C# sample shows how to implement RAG Pattern using different Azure databases. It highlights SQL Server 2022, Azure SQL Database, Azure Cosmos DB for NoSQL, and Azure Cosmos DB for MongoDB.",
"preview": "coming soon",
"website": "https://github.com/lennilobel",
"author": "Lenni Lobel",
"source": "https://github.com/lennilobel/ai-demos-public/tree/main/Rag",
"date": "2024-10-16",
"tags": [
"generativeai",
"csharp",
"gpt4",
"embedding-text-3",
"dalle",
"chat",
"ragPattern",
"openai",
"azurevision",
"functions",
"Microsoft",
"vectorcosmosnosql",
"vectorcosmosmongo",
"example"
]
}


Expand Down

0 comments on commit 592247f

Please sign in to comment.